Searched defs:name (Results 1 - 25 of 25) sorted by relevance

/opengrok-jel/src/org/opensolaris/opengrok/web/
H A DSuggestion.java15 * 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 DSortOrder.java15 * 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 DDiffType.java15 * information: Portions Copyright [yyyy] [name of copyright owner]
47 private String name; field in class:DiffType
49 private DiffType(char abbrev, String name) { argument
51 this.name = name;
69 * Get the diff type for the given abbreviation or name.
70 * @param c abbreviation or name to check.
81 if (d.name.equals(c)) {
99 * @return the common name of the diff type.
103 return name;
[all...]
H A DWebappListener.java15 * information: Portions Copyright [yyyy] [name of copyright owner]
116 private static void updateContext(String name, Object value, ServletContext ctx) { argument
117 if (name == null || ctx == null || !(name.equals(JS_DEBUG_PARAM))) {
121 ctx.setAttribute(name, Boolean.TRUE);
123 ctx.setAttribute(name, Boolean.FALSE);
H A DEftarFileReader.java15 * information: Portions Copyright [yyyy] [name of copyright owner]
163 public String getChildTag(FNode fn, String name) throws IOException { argument
165 FNode ch = fn.binarySearch(fn.offset + fn.childOffset, fn.numChildren, EftarFile.myHash(name));
H A DEftarFile.java15 * information: Portions Copyright [yyyy] [name of copyright owner]
139 public static long myHash(String name) { argument
140 if (name == null || name.length() == 0) {
144 int n = name.length();
149 hash = (hash * 641 + name.charAt(i) * 2969 + hash << 6) % 9322397;
H A DPageConfig.java15 * information: Portions Copyright [yyyy] [name of copyright owner]
418 * @param name name of the parameter to lookup.
423 public int getIntParam(String name, int defaultValue) { argument
425 String s = req.getParameter(name);
648 * Get the name which should be shown as "Crossfile"
649 * @return the name of the related file or directory.
693 for (String name : projects) {
694 buf.append(name).append(',');
717 * a comma (','), since this character is used as name separato
1064 checkFile(File dir, String name) argument
[all...]
H A DUtil.java15 * information: Portions Copyright [yyyy] [name of copyright owner]
247 * link and <var>sep</var> to its name
452 * Append '&amp;name=value" properly URI encoded to the given buffer. If
456 * @param key the name of the parameter to add. Append as is!
497 * available at the end of the URI string and contains name/value pairs
498 * of the form $name['='[$value]] delimited by '&'. So no need to encode '='
681 * URI encode the given name for a URI query string pair using UTF-8
685 * @param name name to encode.
686 * @return the encoded name
691 uriEncodeQueryName(String name) argument
1077 writeJsonArray(Writer out, String name, Collection<String> values) argument
1111 writeJsonArray(Writer out, String name, String[] values) argument
[all...]
/opengrok-jel/test/org/opensolaris/opengrok/analysis/php/
H A DPhpXrefTest.java25 static InputStream getTestFile(String name) throws FileNotFoundException { argument
28 + "/" + name);
/opengrok-jel/jrcs/src/main/java/org/apache/commons/jrcs/tools/
H A DJDiff.java83 static final String[] loadFile(String name) throws IOException argument
85 BufferedReader data = new BufferedReader(new FileReader(name));
95 static final void usage(String name) argument
97 System.err.println("Usage: " + name + " file1 file2");
/opengrok-jel/src/org/opensolaris/opengrok/
H A DFileLogFormatter.java15 * 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 DSimpleFileLogFormatter.java15 * 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-jel/src/org/opensolaris/opengrok/history/
H A DRCSHistoryParser.java15 * information: Portions Copyright [yyyy] [name of copyright owner]
52 private static File readCVSRoot(File root, File CVSdir, String name) argument
67 String filename = name + ",v";
132 protected static File getRCSFile(String parent, String name) { argument
134 File rcsFile = new File(rcsDir, name + ",v");
139 return getCVSFile(parent, name);
142 protected static File getCVSFile(String parent, String name) { argument
148 return readCVSRoot(root, CVSdir, name);
153 + "', name '" + name
[all...]
H A DSCCSHistoryParser.java15 * information: Portions Copyright [yyyy] [name of copyright owner]
251 protected static File getSCCSFile(String parent, String name) argument
253 File f = new File(parent + "/SCCS/s." + name);
H A DSubversionRepository.java15 * information: Portions Copyright [yyyy] [name of copyright owner]
60 /** The property name used to obtain the client command for this repository. */
65 /** The system property name to obtain the subversion user configuration
272 private static String escapeFileName(String name) { argument
273 if (name.length() == 0) {
274 return name;
276 return name + "@";
/opengrok-jel/src/org/opensolaris/opengrok/analysis/
H A DXrefWriter.java15 * information: Portions Copyright [yyyy] [name of copyright owner]
56 * file with the given name.
57 * @param name name of the file to create/overwrite.
61 public XrefWriter(String name, Genre genre) throws IOException { argument
62 this(name, genre, true);
67 * file with the given name.
68 * @param name name of the file to create/overwrite
73 public XrefWriter(String name, Genr argument
[all...]
H A DJFlexXref.java15 * information: Portions Copyright [yyyy] [name of copyright owner]
71 * name used needs to be pushed onto this stack. If the &lt;span ...&gt;
85 * The preferred method to add a new span class name to this instance.
86 * @param s class name to add.
137 final String name; field in class:JFlexXref.Style
139 /** Class name used by the style sheets when rendering the xref. */
149 Style(String name, String ssClass, String title) { argument
150 this.name = name;
324 * array containing the name o
[all...]
/opengrok-jel/lib/
H A Dservlet-api.jar ... lang.String getInitParameter (java.lang.String) String name public java.util.Enumeration getInitParameterNames () public javax. ...
H A Dbcel-5.2.jar ... org.apache.bcel.classfile.AttributeReader) String name org.apache.bcel.classfile.AttributeReader r ...
H A Dswing-layout-0.9.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/jdesktop/ org/jdesktop/layout/ org/jdesktop/layout/AquaBaseline ...
/opengrok-jel/test/org/opensolaris/opengrok/history/
H A DJDBCHistoryCacheTest.java15 * information: Portions Copyright [yyyy] [name of copyright owner]
65 public JDBCHistoryCacheTest(String name) { argument
66 super(name);
541 assertTrue("Info should contain name of history cache",
/opengrok-jel/src/org/opensolaris/opengrok/management/
H A DAgentIndexRunner.java15 * information: Portions Copyright [yyyy] [name of copyright owner]
101 public ObjectName preRegister(MBeanServer serverParam, ObjectName name) { argument
102 return name;
434 String name = "AgentIndexRunner";
436 MBeanNotificationInfo minfo = new MBeanNotificationInfo(supptypes, name,
H A DManagement.java15 * information: Portions Copyright [yyyy] [name of copyright owner]
135 public ObjectName preRegister(MBeanServer server, ObjectName name) { argument
136 return name;
/opengrok-jel/jrcs/src/main/java/org/apache/commons/jrcs/rcs/
H A DArchive.java237 * Parses the archive given by the input stream, and gives it the provided name.
238 * @param fname The name to give to the archive.
249 * Load an archive from an a file given by name.
270 * Set the name of the file for this archive
271 * @param path The full path name.
358 /** Add a user name to the list of archive users.
359 * @param name The user name.
362 public void addUser(String name) argument
364 users.add(name);
[all...]
/opengrok-jel/test/org/opensolaris/opengrok/web/
H A DDummyHttpServletRequest.java15 * information: Portions Copyright [yyyy] [name of copyright owner]
288 public void setAttribute(String name, Object o) { argument
289 attrs.put(name, o);
293 public void removeAttribute(String name) { argument
294 attrs.remove(name);

Completed in 42 milliseconds