Lines Matching refs:path

189         for (String path : paths) {
190 Project project = Project.getProject(path);
192 logger.warning("Could not find a project for '" + path + "'");
205 if (db.addDirectory(path)) {
210 logger.warning("Directory does not exist '" + path + "'");
560 String path = Util.uid2url(uidIter.term().text());
563 listener.fileRemove(path);
567 File xrefFile = new File(xrefDir, path);
582 listener.fileRemoved(path);
589 * @param path The path to the file (from source root)
593 private void addFile(File file, String path) throws IOException {
598 fa = AnalyzerGuru.getAnalyzer(in, path);
600 listener.fileAdd(path, fa.getClass().getSimpleName());
603 fa.setProject(Project.getProject(path));
607 d = analyzerGuru.getDocument(file, in, path, fa);
611 "understand it.", path);
619 File xrefFile = new File(xrefDir, path);
627 fa.writeXref(xrefDir, path);
631 listener.fileAdded(path, fa.getClass().getSimpleName());
725 * Check if I should accept the path containing a symlink
726 * @param absolutePath the path with a symlink to check
727 * @param canonicalPath the canonical path to the file
756 * @param path the path to a file
759 private boolean isLocal(String path) {
765 if (path.startsWith(srcRoot)) {
767 String relPath = path.substring(srcRoot.length());
785 * @param path the path
820 String path = parent + '/' + file.getName();
823 lcur_count = indexDown(file, path, count_only, lcur_count, est_total);
840 String uid = Util.path2uid(path, DateTools
860 addFile(file, path);
930 for (String path : subFiles) {
931 Project project = Project.getProject(path);
934 + path + "'");
985 for (String path : subFiles) {
986 Project project = Project.getProject(path);
988 logger.warning("Could not find a project for '" + path + "'");
1027 * @param path the file to get the database for
1031 public static IndexReader getIndexReader(String path) {
1038 Project p = Project.getProject(path);
1071 String path = RuntimeEnvironment.getConfig()
1074 IndexReader ireader = getIndexReader(path);
1082 Query q = new QueryBuilder().setPath(path).build();
1091 String foundPath = doc.get("path");
1094 if (path.equals(foundPath)) {