Searched defs:line (Results 1 - 13 of 13) sorted by relevance

/opengrok/src/org/opensolaris/opengrok/search/context/
H A DRegexpMatcher.java55 public int match(String line) { argument
56 return (termRegexp != null && termRegexp.matcher(line).matches() )
H A DLineMatcher.java29 * Base class for matching a line against terms
93 public abstract int match(String line); argument
H A DHistoryContext.java106 * @return {@code true} if at least one line has been written out.
149 String line = he.getLine();
156 tokens.reInit(line);
170 writeMatch(sb, line, start, end, true,path,wcontext,nrev,rev);
173 writeMatch(out, line, start, end, false,path,wcontext,nrev,rev);
197 * @param line the matching line
200 * @param flatten should multi-line log entries be flattened to a single
205 * line? If {@code true}, replace newline with space.
207 private void writeMatch(Appendable out, String line, argument
[all...]
/opengrok/src/org/opensolaris/opengrok/history/
H A DMercurialHistoryParser.java180 * Decode a line with a description of a commit. The line is a sequence of
186 * This method is way too tolerant, and won't complain if the line has
189 * @param line the XML encoded line
192 private String decodeDescription(String line) { argument
197 for (int i = DESC_PREFIX.length(); i < line.length(); i++) {
198 char ch = line.charAt(i);
H A DAnnotation.java46 * modification of each line in the file.
64 * Gets the revision for the last change to the specified line.
66 * @param line line number (counting from 1)
68 * about the specified line
70 public String getRevision(int line) { argument
72 return lines.get(line-1).revision;
93 * Gets the author who last modified the specified line.
95 * @param line line numbe
99 getAuthor(int line) argument
113 isEnabled(int line) argument
[all...]
/opengrok/egrok/src/org/opensolaris/opengrok/egrok/model/
H A DHit.java11 private static final String ATTRIBUTE_LINE = "line";
17 private String line; field in class:Hit
38 public Hit(String directory, String filename, int lineno, String line, argument
44 this.line = line;
73 return line;
76 public void setLine(String line) { argument
77 this.line = line;
/opengrok/src/org/opensolaris/opengrok/search/
H A DHit.java46 * Holds value of property line.
48 private String line; field in class:Hit
51 * Holds value of property line no.
81 * @param line The line containing the match
82 * @param lineno The line number in the file the match was found
86 public Hit(String filename, String line, String lineno, boolean binary, boolean alt) { argument
96 this.line = line;
139 * Getter for property line
152 setLine(String line) argument
[all...]
/opengrok/src/org/opensolaris/opengrok/analysis/
H A DDefinitions.java42 // Per line sym -> tags mapping
52 // line -> tag_map
56 * Map from symbol to the line numbers on which the symbol is defined.
90 * Check whether the specified symbol is defined on the given line.
93 * @param lineNumber the line to check
95 * @return {@code true} if {@code symbol} is defined on the specified line
151 * Get a list of all tags on given line.
153 * @param line line number
156 public List<Tag> getTags(int line) { argument
182 public final int line; field in class:Definitions.Tag
204 Tag(int line, String symbol, String type, String text, String namespace, String signature) argument
214 addTag(int line, String symbol, String type, String text) argument
218 addTag(int line, String symbol, String type, String text, String namespace, String signature) argument
[all...]
H A DScopes.java70 public boolean matches(int line) { argument
71 return line >= lineFrom && line <= lineTo;
123 // tree of scopes sorted by starting line
138 public Scope getScope(int line) { argument
139 // find closest scope that starts before or on given line
140 Scope s = scopes.floor(new Scope(line));
141 return (s != null && s.matches(line)) ? s : GLOBAL_SCOPE;
H A DJFlexXref.java240 int line = getLineNumber();
241 List<Tag> tags = defs.getTags(line);
245 scope = new Scope(tag.line, tag.line, tag.symbol, tag.namespace, tag.signature);
281 * @return scopes for current line
302 * @return line number
308 * @param x line number
354 * the type, and an array of (symbol, line) pairs for the definitions of
367 // Order by symbol name, and then by line number if multiple
371 ret = tag1.line
540 writeSymbol(String symbol, Set<String> keywords, int line) argument
555 writeSymbol( String symbol, Set<String> keywords, int line, boolean caseSensitive) argument
[all...]
/opengrok/jrcs/src/main/java/org/apache/commons/jrcs/rcs/
H A DSimpleCharStream.java1 /* Generated By:JavaCC: Do not edit this line. SimpleCharStream.java Version 3.0 */
20 protected int line = 1; field in class:SimpleCharStream
142 line += (column = 1);
152 line += (column = 1);
171 bufline[bufpos] = line;
241 line = startline;
264 line = startline;
354 * Method to adjust line and column numbers for the start of a token.
397 line = bufline[j];
/opengrok/.mvn/wrapper/
H A Dmaven-wrapper.jarorg/apache/maven/wrapper/BootstrapMainStarter.class BootstrapMainStarter.java package org.apache.maven.wrapper public ...
/opengrok/lib/
H A Dbcel-6.0.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ ...

Completed in 1699 milliseconds