Searched refs:start (Results 1 - 25 of 35) sorted by relevance

12

/opengrok-jel/platform/linux/init.d/
H A Dderby43 # Short-Description: start Apache Derby
68 start)
78 start-stop-daemon \
79 --start \
90 start
103 start-stop-daemon --stop --quiet --pidfile $PIDFILE
112 $0 start
132 echo "Usage: /etc/init.d/derby {start|stop|restart|try-restart|reload|force-reload|status}"
/opengrok-jel/tools/init.d/
H A Dopengrok.sh58 start)
67 echo "Usage: $0 {start|stop}"
/opengrok-jel/src/org/opensolaris/opengrok/search/context/
H A DHistoryContext.java191 int start = -1;
196 if (start < 0) {
197 start = tokens.getMatchStart();
202 writeMatch(sb, line, start, end, true, path,
206 writeMatch(out, line, start, end, false, path,
212 if (start < 0) {
213 start = tokens.getMatchStart();
216 start = -1;
233 * @param start start positio
242 writeMatch(Appendable out, String line, int start, int end, boolean flatten, String path, String wcontext, String nrev, String rev) argument
[all...]
H A DPlainLineTokenizer.lex50 * Buffer that holds all the text from the start of the current line, or, in
51 * the case of a match that spans multiple lines, from the start of the
169 private int printWithNum(int start, int end, int lineNo, boolean bold)
176 for (int i = start; i < end; i++ ) {
229 private int formatWithNum(int start, int end, int lineNo) {
230 for (int i = start; i < end; i++ ) {
303 // Remove everything up to the start of the current line in the
/opengrok-jel/src/org/opensolaris/opengrok/analysis/
H A DJFlexTokenizer.java114 /** start and end character offset of the current Token */
135 * @param start the start psition of the current Token
141 protected void setAttribs(String str, int start, int end) { argument
147 this.offsetAtt.setOffset(start, end);
H A DTagFilter.java65 public final int read(char[] buf, int start, int len) throws IOException { argument
67 int pos = start;
H A DCtags.java129 ctags = processBuilder.start();
161 errThread.start();
/opengrok-jel/src/org/opensolaris/opengrok/index/
H A DFilter.java149 int start = fileName.indexOf(".");
150 if (start != -1){
151 String fileExtension = fileName.substring(start);
/opengrok-jel/src/org/opensolaris/opengrok/web/
H A DUtil.java72 int start = -1;
76 start = i;
80 if (start == -1) {
83 StringBuilder sb = new StringBuilder(s.substring(0, start));
86 for (int i=start; i < s.length(); i++) {
117 int start = -1;
121 start = i;
125 if (start == -1) {
128 StringBuilder sb = new StringBuilder(s.substring(0, start));
131 for (int i=start;
510 isEntityRef(String s, int start) argument
[all...]
H A DEftarFile.java120 private FNode sbinSearch(long start, int len, long hash, RandomAccessFile f) throws Throwable { argument
125 f.seek(start + m * RECORD_LENGTH);
H A DEftarFileReader.java85 private FNode binarySearch(long start, int len, long hash) throws IOException { argument
86 //System.err.printf(" Searching [%x] in %5d elem from %x\n", hash, len, start);
91 f.seek(start + m * EftarFile.RECORD_LENGTH);
H A DSearchHelper.java79 /** the result cursor start index, i.e. where to start displaying results */
80 public int start; field in class:SearchHelper
232 * <li>{@link #start} (default: 0)</li>
251 TopFieldDocs fdocs = searcher.search(query, null, start + maxItems, sort);
/opengrok-jel/jrcs/src/main/java/org/apache/commons/jrcs/rcs/
H A DSimpleCharStream.java383 * Method to adjust line and column numbers for the start of a token.
389 int start = tokenBegin;
405 bufline[j = start % bufsize] == bufline[k = ++start % bufsize])
421 if (bufline[j = start % bufsize] != bufline[++start % bufsize])
H A DArchiveParserTokenManager.java382 private final void jjAddStates(int start, int end) argument
385 jjstateSet[jjnewStateCnt++] = jjnextStates[start];
386 } while (start++ != end);
393 private final void jjCheckNAddStates(int start, int end) argument
396 jjCheckNAdd(jjnextStates[start]);
397 } while (start++ != end);
400 private final void jjCheckNAddStates(int start) argument
402 jjCheckNAdd(jjnextStates[start]);
403 jjCheckNAdd(jjnextStates[start + 1]);
H A DArchive.java833 int start = 0;
837 start += 1;
840 for (int i = start; i < end; i++)
/opengrok-jel/jrcs/src/main/java/org/apache/commons/jrcs/diff/
H A DChunk.java89 * @param pos the start position in the text.
101 * @param pos the start position in the text.
114 * @param pos the start position in the text.
127 * @param pos the start position in the text.
141 * @param pos the start position in the text.
258 * @param start where to add the text.
262 public void applyAdd(int start, List target) argument
267 target.add(start++, i.next());
308 * @param pos the start position.
325 * @param pos the start positio
[all...]
/opengrok-jel/src/org/opensolaris/opengrok/search/
H A DSearchEngine.java322 * also end has to be bigger than start !
323 * @param start start of the hit list
325 * @param ret list of results from start to end or null/empty if no search
328 public void results(int start, int end, List<Hit> ret) { argument
330 // return if no start search() was done
331 if (hits == null || (end < start) ) {
352 for (int i = start; i < hits.length; i++) {
369 for (int ii = start; ii < end; ++ii) {
H A DResults.java135 * @param start index of the first hit to print
141 public static void prettyPrint(Writer out, SearchHelper sh, int start, argument
154 createMap(sh.searcher, sh.hits, start, end).entrySet())
/opengrok-jel/src/org/opensolaris/opengrok/history/
H A DSCCSRepository.java108 process = pb.start();
165 process = pb.start();
H A DHistoryGuru.java455 * @param dir the root directory to start the search in.
547 long start = System.currentTimeMillis();
565 new String[]{path, String.valueOf(stop - start)});
/opengrok-jel/src/org/opensolaris/opengrok/util/
H A DExecutor.java128 process = processBuilder.start();
147 thread.start();
/opengrok-jel/test/org/opensolaris/opengrok/configuration/
H A DRuntimeEnvironmentTest.java120 thread.start();
150 thread.start();
169 t.start();
/opengrok-jel/web/static/
H A Dopengrok.js287 var start, stop = 1, len=l2r.length, rid;
293 start = stop;
295 for (var n=start; n < stop; n++) {
511 // start state should ALWAYS be: first row: r1 hidden, r2 checked ;
/opengrok-jel/src/org/opensolaris/opengrok/analysis/executables/
H A DELFAnalyzer.java190 int start = tab + stroff;
191 while ((c = fmap.get(start++)) != 0x00) {
/opengrok-jel/src/org/opensolaris/opengrok/configuration/
H A DRuntimeEnvironment.java275 t.start();

Completed in 40 milliseconds

12