Lines Matching defs:name
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) {
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 separator!
691 * Otherwise:</li> <li>If the request has a cookie with the name
719 * Get the cookie values for the given name. Splits comma separated values
722 * @param cookieName name of the cookie.
739 * Get the parameter values for the given name. Splits comma separated
742 * @param name name of the parameter.
758 * and parameter name. This way it is trivial to implement a project filter
761 * @param paramName the name of the request parameter, which possibly
763 * @param cookieName name of the cookie which possible contains project
847 * Get the name patterns used to determine, whether a file should be
998 private File checkFile(File dir, String name, boolean compressed) {
1001 f = new File(dir, name + ".gz");
1007 f = new File(dir, name);
1015 private File checkFileResolve(File dir, String name, boolean compressed) {
1016 File lresourceFile = new File(getSourceRootPath() + getPath(), name);
1022 f = new File(dir, name + ".gz");
1028 f = new File(dir, name);