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

/opengrok-jel/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-jel/test/org/opensolaris/opengrok/util/
H A DFileUtilities.java144 * @param prefix string to prefix the directory name with
148 public static File createTemporaryDirectory(String prefix) argument
150 File file = File.createTempFile(prefix, "opengrok");
/opengrok-jel/src/org/opensolaris/opengrok/web/
H A DPrefix.java36 /** unknown prefix */
43 * matching lines. The servlet path of this link starts with this prefix. */
45 /** diff to previous version (link prefix) */
47 /** show the history for a file (link prefix) */
49 /** RSS XML Feed of latest changes (link prefix) */
51 /** Download file (link prefix) */
53 /** full blown search from main page or top bar (link prefix) */
67 private String prefix; field in class:Prefix
68 private Prefix(String prefix) { argument
69 this.prefix
[all...]
H A DPageConfig.java93 private Prefix prefix; field in class:PageConfig
307 || prefix == Prefix.DIFF_P
308 || ((prefix == Prefix.XREF_P || prefix == Prefix.RAW_P) && !isDir()
332 if (path.isEmpty() && prefix == Prefix.XREF_P) {
335 if ((prefix == Prefix.HIST_L && !hasHistory()) ||
336 (prefix == Prefix.XREF_P && getResourcePath().equals("/")
344 if (prefix == Prefix.XREF_P) {
912 * Get the prefix for the related request.
914 * prefix, th
[all...]
/opengrok-jel/jrcs/src/main/java/org/apache/commons/jrcs/diff/
H A DChunk.java272 * Provide a string image of the chunk using the an empty prefix and
282 * Provide a string image of the chunk using the given prefix and
285 * @param prefix the text thatshould prefix each line.
289 public StringBuffer toString(StringBuffer s, String prefix, String postfix) argument
297 s.append(prefix);
/opengrok-jel/src/org/opensolaris/opengrok/history/
H A DSubversionHistoryParser.java63 final String prefix; field in class:SubversionHistoryParser.Handler
72 Handler(String home, String prefix, int length, DateFormat df) { argument
74 this.prefix = prefix;
103 if (s.startsWith(prefix)) {
104 File file = new File(home, s.substring(prefix.length()));
/opengrok-jel/test/org/opensolaris/opengrok/history/
H A DJDBCHistoryCacheTest.java85 private void dumpDB(String prefix) { argument
86 String file = "/tmp/opengrok:" + prefix;
/opengrok-jel/lib/
H A Dbcel-5.2.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ ...

Completed in 70 milliseconds