/opengrok-sun/src/org/opensolaris/opengrok/configuration/ |
H A D | Project.java | 125 Project ret = null; 134 ret = proj; 138 return ret; 148 Project ret = null; 150 ret = getProject(RuntimeEnvironment.getInstance().getPathRelativeToSourceRoot(file, 0)); 156 return ret; 165 Project ret = null; 170 ret = proj; 174 return ret;
|
H A D | RuntimeEnvironment.java | 121 File ret = null; 124 ret = new File(file); 127 return ret; 154 File ret = null; 157 ret = new File(file); 160 return ret; 296 boolean ret = true; 308 ret = false; 311 return ret; 863 boolean ret [all...] |
H A D | Configuration.java | 755 final Configuration ret; 757 ret = decodeObject(in); 758 return ret; 763 final Object ret = d.readObject(); 766 if (!(ret instanceof Configuration)) { 769 return (Configuration) ret;
|
/opengrok-sun/src/org/opensolaris/opengrok/history/ |
H A D | SCCSget.java | 36 InputStream ret = null; 48 ret = executor.getOutputStream(); 51 return ret;
|
H A D | MonotoneRepository.java | 63 InputStream ret = null; 89 ret = new BufferedInputStream(new ByteArrayInputStream(out.toByteArray())); 106 return ret; 165 Annotation ret = null; 168 ret = new Annotation(file.getName()); 179 ret.addLine(rev, author, true); 181 ret.addLine(rev, author, true); 187 return ret;
|
H A D | CVSRepository.java | 164 InputStream ret = null; 189 ret = new ByteArrayInputStream(out.toByteArray()); 206 return ret; 259 Annotation ret = new Annotation(fileName); 279 ret.addLine(rev, author, true); 286 return ret;
|
H A D | Annotation.java | 80 Set<String> ret=new HashSet<String>(); 83 ret.add(ln.revision); 85 return ret;
|
H A D | BazaarRepository.java | 91 InputStream ret = null; 114 ret = new ByteArrayInputStream(out.toByteArray()); 130 return ret; 174 Annotation ret = new Annotation(fileName); 184 ret.addLine(rev, author, true); 191 return ret;
|
H A D | SubversionRepository.java | 187 InputStream ret = null; 204 ret = executor.getOutputStream(); 207 return ret; 300 Annotation ret = null; 308 ret = handler.annotation; 324 return ret;
|
H A D | MercurialRepository.java | 125 InputStream ret = null; 154 ret = new ByteArrayInputStream(out.toByteArray()); 171 return ret; 205 Annotation ret = null; 228 ret = new Annotation(file.getName()); 242 ret.addLine(rev, Util.getEmail(author.trim()), true); 260 return ret;
|
H A D | HistoryGuru.java | 127 Annotation ret = null; 131 ret = repos.annotate(file, rev); 139 if (hist != null && ret != null) { 140 Set<String> revs=ret.getRevisions(); 154 ret.addDesc(brev[0], "changeset: "+he.getRevision() 162 return ret; 230 InputStream ret = null; 234 ret = rep.getHistoryGet(parent, basename, rev); 236 return ret;
|
H A D | GitRepository.java | 162 InputStream ret = null; 200 ret = new ByteArrayInputStream(output.toByteArray()); 216 return ret; 306 Annotation ret = new Annotation(fileName); 316 ret.addLine(rev, author, true); 323 return ret;
|
H A D | ClearCaseRepository.java | 108 InputStream ret = null; 136 ret = new BufferedInputStream(new FileInputStream(tmp)) { 164 return ret;
|
/opengrok-sun/src/org/opensolaris/opengrok/util/ |
H A D | Getopt.java | 117 int ret = -1; 121 ret = options.get(current).option; 124 return ret; 139 String ret = null; 142 ret = options.get(current).argument; 144 return ret;
|
H A D | Executor.java | 99 int ret = exec(reportExceptions, spoolOut); 101 return ret; 112 int ret = -1; 153 ret = process.waitFor(); 170 ret = process.exitValue(); 177 if (ret != 0 && reportExceptions) { 180 .append(ret).append(" from command ") 200 return ret; 209 String ret = null; 211 ret [all...] |
/opengrok-sun/src/org/opensolaris/opengrok/index/ |
H A D | Filter.java | 108 boolean ret = false; 113 ret = true; 118 ret = true; 124 if (!ret) { 128 ret = true; 135 if (!ret) { 140 ret = true; 145 return ret; 220 boolean ret = super.add(pattern); 221 if (ret) { [all...] |
H A D | Indexer.java | 645 int ret; 647 ret = (s2 == null) ? 0 : 1; 649 ret = s1.compareTo(s2); 651 return ret;
|
H A D | IndexDatabase.java | 1069 IndexReader ret = null; 1084 ret = DirectoryReader.open(fdir); 1090 return ret;
|
/opengrok-sun/src/org/opensolaris/opengrok/search/ |
H A D | SearchEngine.java | 144 boolean ret; 147 ret = (query != null); 149 ret = false; 152 return ret; 293 * @param ret list of results from start to end or null/empty if no search 296 public void results(int start, int end, List<Hit> ret) { argument 300 ret.clear(); 304 ret.clear(); 331 //TODO generation of ret(results) could be cashed and consumers of engine would just print them in whatever form they need, this way we could get rid of docs 353 tags, nhits > 100, ret); [all...] |
/opengrok-sun/src/org/opensolaris/opengrok/management/ |
H A D | OGAgent.java | 71 boolean ret = false; 78 ret = true; 82 ret = false; 86 return ret; 274 boolean ret = true; 293 ret = false; 296 return ret;
|
/opengrok-sun/src/org/opensolaris/opengrok/analysis/ |
H A D | Ctags.java | 158 Definitions ret = null; 163 ret = new Definitions(); 164 readTags(ret); 167 return ret;
|
H A D | JFlexXref.java | 252 int ret = tag1.symbol.compareTo(tag2.symbol); 253 if (ret == 0) { 254 ret = tag1.line - tag2.line; 256 return ret;
|
/opengrok-sun/jrcs/src/main/java/org/apache/commons/jrcs/rcs/ |
H A D | SimpleCharStream.java | 332 char[] ret = new char[len]; 335 System.arraycopy(buffer, bufpos - len + 1, ret, 0, len); 338 System.arraycopy(buffer, bufsize - (len - bufpos - 1), ret, 0, 340 System.arraycopy(buffer, 0, ret, len - bufpos - 1, bufpos + 1); 343 return ret;
|
/opengrok-sun/lib/ |
H A D | bcel-5.2.jar | META-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ ... |
/opengrok-sun/src/org/opensolaris/opengrok/web/ |
H A D | PageConfig.java | 391 int ret = defaultValue; 397 ret = x; 403 return ret;
|