/opengrok/src/org/opensolaris/opengrok/web/ |
H A D | Suggestion.java | 15 * information: Portions Copyright [yyyy] [name of copyright owner] 32 /** index name */ 33 public String name; field in class:Suggestion 43 * @param name index name. 45 public Suggestion(String name) { argument 46 this.name = name;
|
H A D | SortOrder.java | 15 * information: Portions Copyright [yyyy] [name of copyright owner] 40 private final String name; field in class:SortOrder 43 private SortOrder(String name, String desc) { argument 44 this.name = name; 49 * Get the Sort order wrt. the given name. 50 * @param name the query parameter name of the order to find. 51 * @return {@code null} if there is no SortOrder with the given name, 55 public static SortOrder get(String name) { argument [all...] |
H A D | DiffType.java | 15 * information: Portions Copyright [yyyy] [name of copyright owner] 45 private final String name; field in class:DiffType 47 private DiffType(char abbrev, String name) { argument 49 this.name = name; 67 * Get the diff type for the given abbreviation or name. 68 * @param c abbreviation or name to check. 79 if (d.name.equals(c)) { 97 * @return the common name of the diff type. 101 return name; [all...] |
/opengrok/test/org/opensolaris/opengrok/analysis/ |
H A D | LuceneCompatibilityTest.java | 15 * information: Portions Copyright [yyyy] [name of copyright owner] 101 String name = testA.getClass().getName(); 110 if (!name.endsWith("FileAnalyzer") && !name.endsWith("BZip2Analyzer") && !name.endsWith("GZIPAnalyzer") 111 && !name.endsWith("XMLAnalyzer") && !name.endsWith("TroffAnalyzer") && !name.endsWith("ELFAnalyzer") 112 && !name.endsWith("JavaClassAnalyzer") && !name [all...] |
/opengrok/src/org/opensolaris/opengrok/index/ |
H A D | IgnoredFiles.java | 15 * information: Portions Copyright [yyyy] [name of copyright owner] 80 * @param name the name of the file to check 83 public boolean ignore(String name) { argument 84 return match(name);
|
H A D | IgnoredDirs.java | 15 * information: Portions Copyright [yyyy] [name of copyright owner] 66 * @param name the name of the file to check 69 public boolean ignore(String name) { argument 70 return match(name);
|
H A D | IgnoredNames.java | 15 * information: Portions Copyright [yyyy] [name of copyright owner] 86 * @param name the name of the file to check 89 public boolean ignore(String name) { argument 90 return ignoredFiles.ignore(name) || ignoredDirs.ignore(name);
|
/opengrok/egrok/src/org/opensolaris/opengrok/egrok/model/ |
H A D | HitContainer.java | 9 private String name; field in class:HitContainer 13 public HitContainer(String name) { argument 14 this.name = name; 23 return name;
|
/opengrok/src/org/opensolaris/opengrok/authorization/ |
H A D | AuthorizationPluginClassLoader.java | 15 * information: Portions Copyright [yyyy] [name of copyright owner] 76 public boolean accept(File dir, String name) { 77 return name.endsWith(".jar"); 140 private boolean checkWhiteList(String name) { argument 145 if (name.matches(pattern)) { 152 private void checkClassname(String name) throws SecurityException { argument 153 if (name.startsWith("org.opensolaris.opengrok.") 154 && !checkWhiteList(name)) { 155 throw new SecurityException("Tried to load a blacklisted class \"" + name + "\"\n" 161 private void checkPackage(String name) throw argument 193 loadClass(String name) argument 219 loadClass(String name, boolean resolveIt) argument [all...] |
/opengrok/src/org/opensolaris/opengrok/analysis/archive/ |
H A D | BZip2AnalyzerFactory.java | 15 * information: Portions Copyright [yyyy] [name of copyright owner] 31 private static final String name = "Bzip(2)"; field in class:BZip2AnalyzerFactory 42 super(null, null, SUFFIXES, MAGICS, null, null, null, name);
|
H A D | GZIPAnalyzerFactory.java | 15 * information: Portions Copyright [yyyy] [name of copyright owner] 31 private static final String name = "GZIP"; field in class:GZIPAnalyzerFactory 42 super(null, null, SUFFIXES, MAGICS, null, null, null, name);
|
H A D | TarAnalyzerFactory.java | 15 * information: Portions Copyright [yyyy] [name of copyright owner] 32 private static final String name = "Tar"; field in class:TarAnalyzerFactory 39 super(null, null, SUFFIXES, null, null, null, Genre.XREFABLE, name);
|
H A D | TarAnalyzer.java | 15 * information: Portions Copyright [yyyy] [name of copyright owner] 56 String name = entry.getName(); 57 names.add(name); 59 Util.htmlize(name, xrefOut);
|
H A D | ZipAnalyzer.java | 15 * information: Portions Copyright [yyyy] [name of copyright owner] 56 String name = entry.getName(); 57 names.add(name); 59 Util.htmlize(name, xrefOut);
|
/opengrok/src/org/opensolaris/opengrok/analysis/data/ |
H A D | ImageAnalyzerFactory.java | 15 * information: Portions Copyright [yyyy] [name of copyright owner] 35 private static final String name = "Image file"; field in class:ImageAnalyzerFactory 42 super(null, null, SUFFIXES, null, null, null, Genre.IMAGE, name);
|
/opengrok/src/org/opensolaris/opengrok/analysis/executables/ |
H A D | ELFAnalyzerFactory.java | 15 * information: Portions Copyright [yyyy] [name of copyright owner] 32 private static final String name = "ELF"; field in class:ELFAnalyzerFactory 39 super(null, null, null, MAGICS, null, null, Genre.XREFABLE, name);
|
H A D | JarAnalyzerFactory.java | 15 * information: Portions Copyright [yyyy] [name of copyright owner] 32 private static final String name = "Jar"; field in class:JarAnalyzerFactory 43 super(null, null, SUFFIXES, null, null, null, Genre.XREFABLE, name);
|
H A D | JavaClassAnalyzerFactory.java | 15 * information: Portions Copyright [yyyy] [name of copyright owner] 32 private static final String name = "Java class"; field in class:JavaClassAnalyzerFactory 43 super(null, null, SUFFIXES, MAGICS, null, null, Genre.XREFABLE, name);
|
/opengrok/src/org/opensolaris/opengrok/analysis/ |
H A D | Scopes.java | 15 * information: Portions Copyright [yyyy] [name of copyright owner] 50 private String name; field in class:Scopes.Scope 54 public Scope(int lineFrom, int lineTo, String name, String namespace) { argument 55 this(lineFrom, lineTo, name, namespace, ""); 58 public Scope(int lineFrom, int lineTo, String name, String namespace, String signature) { argument 61 this.name = name; 96 return name; 99 public void setName(String name) { argument 100 this.name [all...] |
H A D | FileAnalyzer.java | 15 * information: Portions Copyright [yyyy] [name of copyright owner] 84 * Get the type name value used to tag lucene documents. 92 * Get the Genre for the given type name. 93 * @param typeName name to check 144 * @param factory name of factory to be used 153 * Returns the normalized name of the analyzer, 156 * @return Normalized name of the analyzer. 159 String name = this.getClass().getSimpleName().toLowerCase(); 162 if (name.endsWith(suffix)) { 163 return name [all...] |
/opengrok/src/org/opensolaris/opengrok/configuration/ |
H A D | Group.java | 15 * information: Portions Copyright [yyyy] [name of copyright owner] 38 private String name; field in class:Group 124 return name; 127 public void setName(String name) { argument 128 this.name = name; 166 hash = 41 * hash + (this.name == null ? 0 : this.name.toUpperCase(Locale.getDefault()).hashCode()); 182 return !(this.name != other.name 193 getByName(String name) argument [all...] |
/opengrok/test/org/opensolaris/opengrok/condition/ |
H A D | RepositoryInstalled.java | 15 * information: Portions Copyright [yyyy] [name of copyright owner] 37 * Each run condition can be forced on with the system property <b>junit-force-{name}=true</b> or <b>junit-force-all=true</b> 43 private final String name; field in class:RepositoryInstalled 46 public RepositoryInstalled(String name, Repository repository) { argument 47 this.name = name; 63 return String.format("junit-force-%s", name);
|
/opengrok/jrcs/src/main/java/org/apache/commons/jrcs/tools/ |
H A D | JDiff.java | 82 static final String[] loadFile(String name) throws IOException argument 84 BufferedReader data = new BufferedReader(new FileReader(name)); 94 static final void usage(String name) argument 96 System.err.println("Usage: " + name + " file1 file2");
|
/opengrok/src/org/opensolaris/opengrok/history/ |
H A D | RCSHistoryParser.java | 15 * information: Portions Copyright [yyyy] [name of copyright owner] 50 private static File readCVSRoot(File root, File CVSdir, String name) throws IOException { argument 63 String filename = name + ",v"; 128 protected static File getRCSFile(String parent, String name) { argument 130 File rcsFile = new File(rcsDir, name + ",v"); 135 return getCVSFile(parent, name); 138 protected static File getCVSFile(String parent, String name) { argument 144 return readCVSRoot(root, CVSdir, name); 149 "Failed to retrieve CVS file of parent: " + parent + ", name: " + name, [all...] |
/opengrok/test/org/opensolaris/opengrok/analysis/php/ |
H A D | sample.php | 13 {${$name}}
|