/opengrok-sun/src/org/opensolaris/opengrok/index/ |
H A D | IgnoredNames.java | 15 * information: Portions Copyright [yyyy] [name of copyright owner] 94 * @param name the name of the file to check 97 public boolean ignore(String name) { argument 98 return match(name);
|
H A D | Filter.java | 15 * information: Portions Copyright [yyyy] [name of copyright owner] 150 * @param name the name of the file to check 153 public boolean match(String name) { argument 154 return match(new File(name));
|
/opengrok-sun/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 | DiffType.java | 15 * information: Portions Copyright [yyyy] [name of copyright owner] 44 private String name; field in class:DiffType 46 private DiffType(char abbrev, String name) { argument 48 this.name = name; 66 * Get the diff type for the given abbreviation or name. 67 * @param c abbreviation or name to check. 78 if (d.name.equals(c)) { 96 * @return the common name of the diff type. 100 return name; [all...] |
H A D | SortOrder.java | 15 * information: Portions Copyright [yyyy] [name of copyright owner] 39 private String name; field in class:SortOrder 42 private SortOrder(String name, String desc) { argument 43 this.name = name; 48 * Get the Sort order wrt. the given name. 49 * @param name the query parameter name of the order to find. 50 * @return {@code null} if there is no SortOrder with the given name, 54 public static SortOrder get(String name) { argument [all...] |
H A D | EftarFile.java | 15 * information: Portions Copyright [yyyy] [name of copyright owner] 138 public static long myHash(String name) { argument 139 if (name == null || name.length() == 0) { 143 int n = name.length(); 148 hash = (hash * 641 + name.charAt(i) * 2969 + hash << 6) % 9322397;
|
H A D | EftarFileReader.java | 15 * information: Portions Copyright [yyyy] [name of copyright owner] 162 public String getChildTag(FNode fn, String name) throws IOException { argument 164 FNode ch = fn.binarySearch(fn.offset + fn.childOffset, fn.numChildren, EftarFile.myHash(name));
|
H A D | PageConfig.java | 15 * information: Portions Copyright [yyyy] [name of copyright owner] 384 * @param name name of the parameter to lookup. 390 public int getIntParam(String name, int defaultValue) { argument 392 String s = req.getParameter(name); 606 * Get the name which should be show as "Crossfile" 608 * @return the name of the related file or directory. 658 for (String name : projects) { 659 buf.append(name).append(','); 682 * character is used as name separato 998 checkFile(File dir, String name, boolean compressed) argument 1015 checkFileResolve(File dir, String name, boolean compressed) argument [all...] |
/opengrok-sun/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-sun/src/org/opensolaris/opengrok/ |
H A D | FileLogFormatter.java | 15 * information: Portions Copyright [yyyy] [name of copyright owner] 49 private String classNameOnly(String name) { argument 50 int index = name.lastIndexOf('.') + 1; 51 return name.substring(index);
|
H A D | SimpleFileLogFormatter.java | 15 * information: Portions Copyright [yyyy] [name of copyright owner] 49 private String classNameOnly(String name) { argument 50 int index = name.lastIndexOf('.') + 1; 51 return name.substring(index);
|
/opengrok-sun/src/org/opensolaris/opengrok/history/ |
H A D | RCSHistoryParser.java | 15 * information: Portions Copyright [yyyy] [name of copyright owner] 48 private static File readCVSRoot(File root, File CVSdir, String name) throws IOException { argument 61 String filename = name + ",v"; 126 protected static File getRCSFile(String parent, String name) { argument 128 File rcsFile = new File(rcsDir, name + ",v"); 133 return getCVSFile(parent, name); 136 protected static File getCVSFile(String parent, String name) { argument 142 return readCVSRoot(root, CVSdir, name); 147 "Failed to retrieve CVS file of parent: " + parent + ", name: " + name, [all...] |
H A D | SCCSHistoryParser.java | 15 * information: Portions Copyright [yyyy] [name of copyright owner] 249 protected static File getSCCSFile(String parent, String name) argument 251 File f = new File(parent + "/SCCS/s." + name);
|
H A D | SubversionRepository.java | 15 * information: Portions Copyright [yyyy] [name of copyright owner] 58 /** The property name used to obtain the client command for this repository. */ 226 private String escapeFileName(String name) { argument 227 if (name.length() == 0) { 228 return name; 230 return name + "@";
|
/opengrok-sun/test/org/opensolaris/opengrok/history/ |
H A D | JDBCHistoryCacheTest.java | 15 * information: Portions Copyright [yyyy] [name of copyright owner] 54 public JDBCHistoryCacheTest(String name) { argument 55 super(name); 413 assertTrue("Info should contain name of history cache",
|
/opengrok-sun/test/org/opensolaris/opengrok/web/ |
H A D | DirectoryListingTest.java | 15 * information: Portions Copyright [yyyy] [name of copyright owner] 59 FileEntry(String name, long lastModified, int size) { argument 60 this.name = name; 66 File file = new File(directory, name); 86 String name; field in class:DirectoryListingTest.FileEntry 95 return name.compareTo(fe.name); 209 entry.name = getFilename(nl.item(1)); 221 fail("Could not find a match for: " + entry.name); [all...] |
H A D | DummyHttpServletRequest.java | 15 * information: Portions Copyright [yyyy] [name of copyright owner] 275 public void setAttribute(String name, Object o) { argument 276 attrs.put(name, o); 280 public void removeAttribute(String name) { argument 281 attrs.remove(name);
|
/opengrok-sun/lib/ |
H A D | servlet-api.jar | ... lang.String getInitParameter (java.lang.String) String name
public java.util.Enumeration getInitParameterNames () public javax. ... |
H A D | bcel-5.2.jar | ... org.apache.bcel.classfile.AttributeReader) String name
org.apache.bcel.classfile.AttributeReader r ... |
H A D | swing-layout-0.9.jar | META-INF/ META-INF/MANIFEST.MF org/ org/jdesktop/ org/jdesktop/layout/ org/jdesktop/layout/AquaBaseline ... |
/opengrok-sun/src/org/opensolaris/opengrok/analysis/ |
H A D | JFlexXref.java | 15 * information: Portions Copyright [yyyy] [name of copyright owner] 87 final String name; field in class:JFlexXref.Style 89 * Class name used by the style sheets when rendering the xref. 101 Style(String name, String ssClass, String title) { argument 102 this.name = name; 236 * array containing the name of the definition type, the CSS class name for 250 // Order by symbol name, and then by line number if multiple 251 // definitions use the same symbol name [all...] |
/opengrok-sun/src/org/opensolaris/opengrok/management/ |
H A D | AgentIndexRunner.java | 15 * information: Portions Copyright [yyyy] [name of copyright owner] 94 public ObjectName preRegister(MBeanServer serverParam, ObjectName name) { argument 95 return name; 361 String name = "AgentIndexRunner"; 363 MBeanNotificationInfo minfo = new MBeanNotificationInfo(supptypes, name,
|
H A D | Management.java | 15 * information: Portions Copyright [yyyy] [name of copyright owner] 118 public ObjectName preRegister(MBeanServer server, ObjectName name) { argument 119 return name;
|
/opengrok-sun/jrcs/src/main/java/org/apache/commons/jrcs/rcs/ |
H A D | Archive.java | 224 * Parses the archive given by the input stream, and gives it the provided name. 225 * @param fname The name to give to the archive. 235 * Load an archive from an a file given by name. 254 * Set the name of the file for this archive 255 * @param path The full path name. 336 /** Add a user name to the list of archive users. 337 * @param name The user name. 339 public void addUser(String name) argument 341 users.add(name); [all...] |