Searched refs:file (Results 1 - 25 of 89) sorted by relevance

1234

/opengrok/ext/SampleRazorRepository/Repository/OpenGrokSample/RAZOR_UNIVERSE/DOMAIN_01/Simple/History/SimpleCProgram/
H A Dheader.h2 ##TITLE: Introduced file
/opengrok/src/org/opensolaris/opengrok/index/
H A DIgnoredFiles.java4 * The contents of this file are subject to the terms of the
6 * You may not use this file except in compliance with the License.
12 * file and include the License file at LICENSE.txt.
28 * This class maintains a list of file names (like "cscope.out"), SRC_ROOT
29 * relative file paths (like "usr/src/uts" or "usr/src/Makefile"), and glob
70 * Should the file be ignored or not?
71 * @param file the file to check
72 * @return true if this file shoul
74 ignore(File file) argument
[all...]
H A DIgnoredDirs.java4 * The contents of this file are subject to the terms of the
6 * You may not use this file except in compliance with the License.
12 * file and include the License file at LICENSE.txt.
29 * relative file paths (like "usr/src/uts"), and glob
56 * Should the file be ignored or not?
57 * @param file the file to check
58 * @return true if this file should be ignored, false otherwise
60 public boolean ignore(File file) { argument
[all...]
H A DIgnoredNames.java4 * The contents of this file are subject to the terms of the
6 * You may not use this file except in compliance with the License.
12 * file and include the License file at LICENSE.txt.
70 * Should the file be ignored or not?
72 * @param file the file to check
73 * @return true if this file should be ignored, false otherwise
75 public boolean ignore(File file) { argument
76 if (file
[all...]
/opengrok/src/org/opensolaris/opengrok/util/
H A DIOUtils.java4 * The contents of this file are subject to the terms of the
6 * You may not use this file except in compliance with the License.
12 * file and include the License file at LICENSE.txt.
30 import java.nio.file.FileVisitResult;
31 import java.nio.file.Files;
32 import java.nio.file.Path;
33 import java.nio.file.SimpleFileVisitor;
34 import java.nio.file.attribute.BasicFileAttributes;
71 public FileVisitResult visitFile(Path file, BasicFileAttribute
[all...]
/opengrok/test/org/opensolaris/opengrok/util/
H A DFileUtilities.java4 * The contents of this file are subject to the terms of the
6 * You may not use this file except in compliance with the License.
12 * file and include the License file at LICENSE.txt.
52 File file = new File(root, ze.getName());
54 file.mkdirs();
58 FileOutputStream out = new FileOutputStream(file);
115 File file = File.createTempFile(prefix, "opengrok");
116 if (!file.delete()) {
118 "Could not create delete temporary file "
[all...]
/opengrok/src/org/opensolaris/opengrok/history/
H A DRCSRepository.java4 * The contents of this file are subject to the terms of the
6 * You may not use this file except in compliance with the License.
12 * file and include the License file at LICENSE.txt.
55 boolean fileHasHistory(File file) { argument
56 return getRCSFile(file) != null;
62 File file = new File(parent, basename);
63 File rcsFile = getRCSFile(file);
73 boolean fileHasAnnotation(File file) { argument
74 return fileHasHistory(file);
78 annotate(File file, String revision) argument
83 annotate(File file, String revision, File rcsFile) argument
128 isRepositoryFor(File file) argument
141 getRCSFile(File file) argument
154 getHistory(File file) argument
[all...]
H A DRazorRepository.java4 * The contents of this file are subject to the terms of the
6 * You may not use this file except in compliance with the License.
12 * file and include the License file at LICENSE.txt.
51 * interface called 'issue weaver'. Each group has a file repository, managed by
55 * the file repository itself.
65 * one or more Groups each consisting of file repository and thread repository.
67 * (Archive, History, Info, Scripts and Tables). When file revision control is
68 * needed on a file (both committed files and some internal implementation
70 * numbered compressed instances of binary files. Each file i
180 getOpenGrokFileNameFor(File file) argument
189 getRazorHistoryFileFor(File file) argument
193 getRazorArchiveRCSFileFor(File file) argument
197 getRazorArchiveBinaryFileFor(File file, String rev) argument
201 getRazorArchiveSCCSFileFor(File file) argument
206 fileHasHistory(File file) argument
253 annotate(File file, String revision) argument
271 fileHasAnnotation(File file) argument
297 pathTranslation(File file, String intermediateElements, String filePrefix, String fileSuffix) argument
328 isRepositoryFor(File file) argument
339 getHistory(File file) argument
[all...]
H A DRepoRepository.java4 * The contents of this file are subject to the terms of the
6 * You may not use this file except in compliance with the License.
12 * file and include the License file at LICENSE.txt.
80 boolean isRepositoryFor(File file) { argument
81 if (file.isDirectory()) {
82 File f = new File(file, ".repo");
94 boolean fileHasHistory(File file) { argument
104 History getHistory(File file) { argument
114 boolean fileHasAnnotation(File file) { argument
119 annotate(File file, String revision) argument
[all...]
H A DHistoryGuru.java4 * The contents of this file are subject to the terms of the
6 * You may not use this file except in compliance with the License.
12 * file and include the License file at LICENSE.txt.
28 import java.nio.file.Path;
128 * Annotate the specified revision of a file.
130 * @param file the file to annotate
132 * @return file annotation, or <code>null</code> if the
136 public Annotation annotate(File file, Strin argument
183 getHistoryReader(File file) argument
195 getHistory(File file) argument
199 getHistory(File file, boolean withFiles) argument
210 getHistoryUI(File file) argument
225 getHistory(File file, boolean withFiles, boolean ui) argument
274 hasHistory(File file) argument
296 hasAnnotation(File file) argument
684 ensureHistoryCacheExists(File file) argument
[all...]
H A DRepositoryFactory.java4 * The contents of this file are subject to the terms of the
6 * You may not use this file except in compliance with the License.
12 * file and include the License file at LICENSE.txt.
79 * Returns a repository for the given file, or null if no repository was
82 * @param file File that might contain a repository
83 * @return Correct repository for the given file
87 * file
89 public static Repository getRepository(File file) throws InstantiationException, IllegalAccessException { argument
93 if (rep.isRepositoryFor(file)) {
[all...]
H A DSCCSRepository.java4 * The contents of this file are subject to the terms of the
6 * You may not use this file except in compliance with the License.
12 * file and include the License file at LICENSE.txt.
88 private void getAuthors(File file) throws IOException { argument
99 argv.add(file.getCanonicalPath());
102 pb.directory(file.getCanonicalFile().getParentFile());
142 * Annotate the specified file/revision.
144 * @param file file t
150 annotate(File file, String revision) argument
206 fileHasAnnotation(File file) argument
216 fileHasHistory(File file) argument
227 isRepositoryFor(File file) argument
260 getHistory(File file) argument
[all...]
H A DPerforceRepository.java4 * The contents of this file are subject to the terms of the
6 * You may not use this file except in compliance with the License.
12 * file and include the License file at LICENSE.txt.
69 public Annotation annotate(File file, String rev) throws IOException { argument
70 Annotation a = new Annotation(file.getName());
73 = PerforceHistoryParser.getRevisions(file, rev).getHistoryEntries();
85 cmd.add(file.getPath() + getRevisionCmd(rev));
87 Executor executor = new Executor(cmd, file.getParentFile());
108 "Error: Could not read annotations for " + file,
141 fileHasHistory(File file) argument
146 fileHasAnnotation(File file) argument
159 isInP4Depot(File file) argument
197 isRepositoryFor(File file) argument
216 getHistory(File file) argument
[all...]
H A DAccuRevRepository.java4 * The contents of this file are subject to the terms of the
6 * You may not use this file except in compliance with the License.
12 * file and include the License file at LICENSE.txt.
46 * It appears that the file path that is given to all these methods is the
47 * complete path to the file which includes the path to the root of the source
91 public Annotation annotate(File file, String rev) throws IOException { argument
93 Annotation a = new Annotation(file.getName());
102 String path = getDepotRelativePath(file);
115 Executor executor = new Executor(cmd, file
152 getHistoryLogExecutor(File file) argument
246 fileHasHistory(File file) argument
251 fileHasAnnotation(File file) argument
303 getDepotRelativePath(File file) argument
347 getHistory(File file) argument
[all...]
H A DRCSHistoryParser.java4 * The contents of this file are subject to the terms of the
6 * You may not use this file except in compliance with the License.
12 * file and include the License file at LICENSE.txt.
44 * Virtualise RCS file as a reader, getting a specified version
74 History parse(File file, Repository repos) throws HistoryException { argument
76 return parseFile(file);
82 private History parseFile(File file) throws IOException { argument
84 Archive archive = new Archive(getRCSFile(file).getPath());
97 "Could not parse file "
124 getRCSFile(File file) argument
160 readFirstLine(File file) argument
[all...]
H A DSSCMRepository.java4 * The contents of this file are subject to the terms of the
6 * You may not use this file except in compliance with the License.
12 * file and include the License file at LICENSE.txt.
77 boolean fileHasHistory(File file) { argument
95 private Properties getProperties(File file) { argument
98 if (file.isDirectory()) {
99 propFile = new File(file, MYSCMSERVERINFO_FILE);
101 propFile = new File(file.getParent(), MYSCMSERVERINFO_FILE);
109 "Failed to work with {0} file o
127 getHistoryLogExecutor(final File file, String sinceRevision) argument
157 getHistory(File file) argument
162 getHistory(File file, String sinceRevision) argument
259 fileHasAnnotation(File file) argument
296 annotate(File file, String revision) argument
386 isRepositoryFor(File file) argument
[all...]
H A DClearCaseRepository.java4 * The contents of this file are subject to the terms of the
6 * You may not use this file except in compliance with the License.
12 * file and include the License file at LICENSE.txt.
89 * file.
91 * @param file The file to retrieve history for
94 Executor getHistoryLogExecutor(final File file) throws IOException { argument
95 String abs = file.getCanonicalPath();
105 if (file
210 annotate(File file, String revision) argument
258 fileHasAnnotation(File file) argument
322 fileHasHistory(File file) argument
340 isRepositoryFor(File file) argument
408 getHistory(File file) argument
[all...]
H A DBazaarRepository.java4 * The contents of this file are subject to the terms of the
6 * You may not use this file except in compliance with the License.
12 * file and include the License file at LICENSE.txt.
70 * file.
72 * @param file The file to retrieve history for
77 Executor getHistoryLogExecutor(final File file, final String sinceRevision) argument
79 String abs = file.getCanonicalPath();
90 if (file
162 annotate(File file, String revision) argument
211 fileHasAnnotation(File file) argument
240 fileHasHistory(File file) argument
249 isRepositoryFor(File file) argument
272 getHistory(File file, String sinceRevision) argument
284 getHistory(File file) argument
[all...]
H A DCVSRepository.java4 * The contents of this file are subject to the terms of the
6 * You may not use this file except in compliance with the License.
12 * file and include the License file at LICENSE.txt.
108 LOGGER.log(Level.FINE, "not loading CVS Root file: {0}", e);
119 File getRCSFile(File file) { argument
121 = RCSHistoryParser.getCVSFile(file.getParent(), file.getName());
129 public boolean isRepositoryFor(File file) { argument
130 if (file
158 getHistoryLogExecutor(final File file) argument
256 fileHasAnnotation(File file) argument
261 fileHasHistory(File file) argument
269 getHistory(File file) argument
274 annotate(File file, String revision) argument
[all...]
H A DMonotoneRepository.java4 * The contents of this file are subject to the terms of the
6 * You may not use this file except in compliance with the License.
12 * file and include the License file at LICENSE.txt.
116 * file or directory.
118 * @param file The file or directory to retrieve history for
123 Executor getHistoryLogExecutor(File file, String sinceRevision) argument
125 String abs = file.getCanonicalPath();
155 * Annotate the specified file/revisio
163 annotate(File file, String revision) argument
202 fileHasAnnotation(File file) argument
231 fileHasHistory(File file) argument
236 isRepositoryFor(File file) argument
256 getHistory(File file) argument
261 getHistory(File file, String sinceRevision) argument
[all...]
/opengrok/src/org/opensolaris/opengrok/analysis/
H A DStreamSource.java4 * The contents of this file are subject to the terms of the
6 * You may not use this file except in compliance with the License.
12 * file and include the License file at LICENSE.txt.
54 * reads data from a file.
56 * @param file the data file
57 * @return a stream source that reads from {@code file}
59 public static StreamSource fromFile(final File file) { argument
63 return new BufferedInputStream(new FileInputStream(file));
[all...]
/opengrok/src/org/opensolaris/opengrok/web/
H A DDirectoryListing.java4 * The contents of this file are subject to the terms of the
6 * You may not use this file except in compliance with the License.
12 * file and include the License file at LICENSE.txt.
61 * Write part of HTML code which contains file/directory last
65 * @param child the file or directory to use for writing the data
151 for (String file : files) {
152 if (ignoredNames.ignore(file)) {
155 File child = new File(dir, file);
159 if (file
[all...]
/opengrok/src/org/opensolaris/opengrok/management/
H A DJMXConfiguration.java4 * The contents of this file are subject to the terms of the
6 * You may not use this file except in compliance with the License.
12 * file and include the License file at LICENSE.txt.
52 //write it to file as well
55 File file = new File(configfile);
56 if (!file.exists()) {
57 if (!file.createNewFile()) {
58 throw new IOException("Could not create configuration file: '" + configfile + "'");
61 RuntimeEnvironment.getInstance().writeConfiguration(file);
[all...]
/opengrok/platform/solaris/ips/
H A Dcreate.sh5 # The contents of this file are subject to the terms of the
7 # You may not use this file except in compliance with the License.
13 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
196 PKG pkgsend add file platform/solaris/smf/opengrok.xml mode=0444 owner=root group=sys path=/var/svc/manifest/application/opengrok.xml restart_fmri=svc:/system/manifest-import:default
197 PKG pkgsend add file platform/solaris/smf/svc-opengrok mode=0555 owner=root group=bin path=/lib/svc/method/svc-opengrok
198 PKG pkgsend add file platform/solaris/smf/ogindexd mode=0555 owner=root group=bin path=/usr/opengrok/lib/ogindexd
200 PKG pkgsend add file OpenGrok mode=0555 owner=root group=bin path=/usr/opengrok/bin/OpenGrok
201 PKG pkgsend add file tools/Groups mode=0555 owner=root group=bin path=/usr/opengrok/bin/Groups
202 PKG pkgsend add file tool
[all...]
/opengrok/egrok/src/org/opensolaris/opengrok/egrok/model/
H A DHitContainer.java34 public void setCorrespondingFile(IFile file) { argument
35 this.correspondingFile = file;

Completed in 24 milliseconds

1234