Searched defs:value (Results 1 - 12 of 12) sorted by relevance

/opengrok-jel/jrcs/src/main/java/org/apache/commons/jrcs/util/
H A DToString.java105 * Use the value of the <code>line.separator</code> system property
107 * @param value the string to convert.
111 public static String[] stringToArrayold(String value) argument
113 BufferedReader reader = new BufferedReader(new StringReader(value));
132 public static String[] stringToArray(String value) argument
136 while( (i = value.indexOf('\n', p)) >= 0 && p < value.length()) {
137 l.add(value.substring(p, i));
141 if (p < value.length())
142 l.add(value
156 stringToArraya(String value) argument
[all...]
/opengrok-jel/src/org/opensolaris/opengrok/web/
H A DWebappListener.java116 private static void updateContext(String name, Object value, ServletContext ctx) { argument
120 if (value != null && Boolean.parseBoolean(value.toString())) {
H A DPageConfig.java264 * or one with an unknown value, the recognized diff type otherwise.
277 * literal value {@code 1} was found.
417 * Get the int value of the given request parameter.
419 * @param defaultValue value to return, if the parameter is not set, is not
421 * @return the parsed int value on success, the given default value otherwise.
656 * Get the {@code path} parameter and display value for "Search only in"
659 * htmlized path value to use (starts and ends always with a '/'). Field[1]
706 * its value otherwise.
747 private static void splitByComma(String value, Lis argument
[all...]
H A DUtil.java452 * Append '&amp;name=value" properly URI encoded to the given buffer. If
453 * the given <var>value</var> is {@code null}, this method does nothing.
457 * @param value the decoded value for the given parameter.
462 String value)
464 if (value != null) {
466 .append(uriEncodeQueryValue(value));
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 '='
665 * URI encode the given value fo
461 appendQuery(StringBuilder buf, String key, String value) argument
676 uriEncodeQueryValue(String value) argument
[all...]
/opengrok-jel/src/org/opensolaris/opengrok/management/
H A DManagementMBean.java101 * @return String with property value
110 * $param value the String value for the property to be set.
112 public void setProperty(String key, String value); argument
116 * @return String with property value
123 * $param value the String value for the property to be set.
125 public void setSystemProperty(String key, String value); argument
129 * @return String with Environment property value
H A DManagement.java105 * @return String with property value
115 * $param value the String value for the property to be set.
118 public void setProperty(String key, String value) { argument
123 ogaProperties.setProperty(key, value);
184 public void setSystemProperty(String key, String value) { argument
189 System.setProperty(key, value);
/opengrok-jel/lib/
H A Dservlet-api.jar ... javax.servlet.ServletContextEvent { private String name private Object value public void " href="/source/s?defs=% ...
H A Dbcel-5.2.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ ...
H A Dswing-layout-0.9.jar ... valueRange double pixelsPerValue int trackBottom int yPosition boolean inverted Integer value java.awt.FontMetrics metrics java.awt. ...
/opengrok-jel/jrcs/src/main/java/org/apache/commons/jrcs/rcs/
H A DArchive.java420 * @param value Indicates if strict locking should be on or off.
422 public void setStrictLocking(boolean value) argument
424 strictLocking = value;
430 * @param value The keyword expansion value. It should be one of:
432 * <li> kv (Default) Substitue keyword and value.
433 * <li> kvl Substitute keyword, value, and locker (if any).
437 * <li> v Substitue value only.
440 public void setExpand(String value) argument
442 expand = value;
450 setComment(String value) argument
460 setDesc(String value) argument
[all...]
H A DNode.java299 * @param value an array of 6 integers, corresponding to the
305 public void setDate(int[] value) argument
307 this.date = new GregorianCalendar(value[0] + (value[0] <= 99 ? 1900 : 0),
308 value[1] - 1, value[2],
309 value[3], value[4], value[5]).getTime();
314 * @param value
317 setState(String value) argument
339 setLog(String value) argument
361 setText(String value) argument
379 setText(Object[] value) argument
[all...]
/opengrok-jel/src/org/opensolaris/opengrok/analysis/executables/
H A DELFAnalyzer.java249 if (fmap.get(ELFIdentification.EI_MAG0.value()) != 0x7f ||
250 fmap.get(ELFIdentification.EI_MAG1.value()) != 'E' ||
251 fmap.get(ELFIdentification.EI_MAG2.value()) != 'L' ||
252 fmap.get(ELFIdentification.EI_MAG3.value()) != 'F') {
256 ei_class = EI_Class.valueOf(fmap.get(ELFIdentification.EI_CLASS.value()));
257 ei_data = EI_Data.valueOf(fmap.get(ELFIdentification.EI_DATA.value()));
258 ei_version = fmap.get(ELFIdentification.EI_VERSION.value());
266 fmap.position(ELFIdentification.EI_NIDENT.value());
286 + e_machine.value() + "\ne_version: " + e_version + "\ne_entry: "
428 private final int value; field in class:ELFAnalyzer.ELFIdentification
430 ELFIdentification(int value) argument
434 public int value() { method in class:ELFAnalyzer.ELFIdentification
448 private final int value; field in class:ELFAnalyzer.EI_Class
450 EI_Class(int value) argument
454 valueOf(byte value) argument
476 valueOf(byte value) argument
500 private final int value; field in class:ELFAnalyzer.E_Type
502 E_Type(int value) argument
506 valueOf(short value) argument
518 public int value() { method in class:ELFAnalyzer.E_Type
548 private final int value; field in class:ELFAnalyzer.E_Machine
550 E_Machine(int value) argument
554 valueOf(short value) argument
569 public int value() { method in class:ELFAnalyzer.E_Machine
590 private final int value; field in class:ELFAnalyzer.E_Version
592 E_Version(int value) argument
596 valueOf(int value) argument
[all...]

Completed in 32 milliseconds