Searched defs:prefix (Results 1 - 7 of 7) sorted by relevance

/opengrok-sun/src/org/opensolaris/opengrok/search/context/
H A DPrefixMatcher.java27 * Matches a term against a prefix
30 private final String prefix; field in class:PrefixMatcher
32 public PrefixMatcher(String prefix, boolean caseInsensitive) { argument
34 this.prefix = normalizeString(prefix);
39 return tokenToMatch.startsWith(prefix) ? MATCHED : NOT_MATCHED;
/opengrok-sun/test/org/opensolaris/opengrok/util/
H A DFileUtilities.java109 * @param prefix string to prefix the directory name with
113 public static File createTemporaryDirectory(String prefix) argument
115 File file = File.createTempFile(prefix, "opengrok");
/opengrok-sun/src/org/opensolaris/opengrok/web/
H A DPrefix.java36 /** unknown prefix */
46 * lines. The servlet path of this link starts with this prefix. */
50 /** diff to previous version (link prefix) */
58 /** show the history for a file (link prefix) */
60 /** RSS XML Feed of latest changes (link prefix) */
62 /** Download file (link prefix) */
64 /** full blown search from main page or top bar (link prefix) */
76 private String prefix; field in class:Prefix
77 private Prefix(String prefix) { argument
78 this.prefix
[all...]
H A DPageConfig.java90 private Prefix prefix; field in class:PageConfig
877 * Get the prefix for the related request.
880 * prefix, the prefix otherwise.
883 if (prefix == null) {
884 prefix = Prefix.get(req.getServletPath());
886 return prefix;
1093 if (prefix != Prefix.XREF_P && prefix != Prefix.HIST_L) {
1100 return req.getContextPath() + prefix
[all...]
/opengrok-sun/jrcs/src/main/java/org/apache/commons/jrcs/diff/
H A DChunk.java259 * Provide a string image of the chunk using the an empty prefix and
268 * Provide a string image of the chunk using the given prefix and
271 * @param prefix the text thatshould prefix each line.
274 public StringBuffer toString(StringBuffer s, String prefix, String postfix) argument
281 s.append(prefix);
/opengrok-sun/src/org/opensolaris/opengrok/history/
H A DSubversionHistoryParser.java58 final String prefix; field in class:SubversionHistoryParser.Handler
67 Handler(String home, String prefix, int length, DateFormat df) { argument
69 this.prefix = prefix;
97 if (s.startsWith(prefix)) {
98 File file = new File(home, s.substring(prefix.length()));
/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 2056 milliseconds