/opengrok/jrcs/src/main/java/org/apache/commons/jrcs/util/ |
H A D | ToString.java | 103 * Use the value of the <code>line.separator</code> system property 105 * @param value the string to convert. 107 public static String[] stringToArrayold(String value) argument 109 BufferedReader reader = new BufferedReader(new StringReader(value)); 126 public static String[] stringToArray(String value) argument 130 while( (i = value.indexOf('\n', p)) >= 0 && p < value.length()) { 131 l.add(value.substring(p, i)); 135 if (p < value.length()) 136 l.add(value 148 stringToArraya(String value) argument [all...] |
/opengrok/src/org/opensolaris/opengrok/management/ |
H A D | ManagementMBean.java | 103 * @return String with property value 112 * $param value the String value for the property to be set. 113 * @param value what to set for the key 115 public void setProperty(String key, String value); argument 120 * @return String with property value 127 * $param value the String value for the property to be set. 128 * @param value what to set for the key 130 public void setSystemProperty(String key, String value); argument [all...] |
H A D | Management.java | 96 * @return String with property value 106 * $param value the String value for the property to be set. 109 public void setProperty(String key, String value) { argument 114 ogaProperties.setProperty(key, value); 157 public void setSystemProperty(String key, String value) { argument 162 System.setProperty(key, value);
|
/opengrok/egrok/lib/ |
H A D | json-simple-1.1.1.jar | ... io.Writer) throws java.io.IOException Object value
java.util.List list
java.io. ... |
/opengrok/lib/ |
H A D | json-simple-1.1.1.jar | ... io.Writer) throws java.io.IOException Object value
java.util.List list
java.io. ... |
H A D | bcel-6.0.jar | META-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ ... |
H A D | swing-layout-0.9.jar | ... valueRange
double pixelsPerValue
int trackBottom
int yPosition
boolean inverted
Integer value
java.awt.FontMetrics metrics
java.awt. ... |
/opengrok/jrcs/src/main/java/org/apache/commons/jrcs/rcs/ |
H A D | Archive.java | 391 * @param value Indicates if strict locking should be on or off. 393 public void setStrictLocking(boolean value) argument 395 strictLocking = value; 401 * @param value The keyword expansion value. It should be one of: 403 * <li> kv (Default) Substitue keyword and value. 404 * <li> kvl Substitute keyword, value, and locker (if any). 408 * <li> v Substitue value only. 411 public void setExpand(String value) argument 413 expand = value; 421 setComment(String value) argument 431 setDesc(String value) argument [all...] |
H A D | Node.java | 284 * @param value an array of 6 integers, corresponding to the 290 public void setDate(int[] value) argument 292 this.date = new GregorianCalendar(value[0] + (value[0] <= 99 ? 1900 : 0), 293 value[1] - 1, value[2], 294 value[3], value[4], value[5]).getTime(); 299 * @param value 302 setState(String value) argument 324 setLog(String value) argument 345 setText(String value) argument 363 setText(Object[] value) argument [all...] |
/opengrok/src/org/opensolaris/opengrok/web/ |
H A D | Util.java | 676 * Append '&name=value" to the given buffer. If the given 677 * <var>value</var> 682 * @param value the value for the given parameter. Gets automatically UTF-8 688 String value) { 690 if (value != null) { 691 buf.append("&").append(key).append('=').append(URIEncode(value)); 728 int u = b & 0xFF; // Make the byte value unsigned. 741 * Escape a string for use as in an HTML attribute value. The returned value 687 appendQuery(StringBuilder buf, String key, String value) argument [all...] |
H A D | PageConfig.java | 130 * @param val value 139 * @return Object attribute value or null if attribute does not exist 313 * parameter or one with an unknown value, the recognized diff type 328 * value {@code 1} was found. 430 * Get the int value of the given request parameter. 433 * @param defaultValue value to return, if the parameter is not set, is not 435 * @return the parsed int value on success, the given default value 666 * Get the {@code path} parameter and display value for "Search only in" 670 * value t 749 splitByComma(String value, List<String> result) argument [all...] |
/opengrok/src/org/opensolaris/opengrok/analysis/executables/ |
H A D | ELFAnalyzer.java | 200 if (fmap.get(ELFIdentification.EI_MAG0.value()) != 0x7f || 201 fmap.get(ELFIdentification.EI_MAG1.value()) != 'E' || 202 fmap.get(ELFIdentification.EI_MAG2.value()) != 'L' || 203 fmap.get(ELFIdentification.EI_MAG3.value()) != 'F') { 207 ei_class = EI_Class.valueOf(fmap.get(ELFIdentification.EI_CLASS.value())); 208 ei_data = EI_Data.valueOf(fmap.get(ELFIdentification.EI_DATA.value())); 209 ei_version = fmap.get(ELFIdentification.EI_VERSION.value()); 217 fmap.position(ELFIdentification.EI_NIDENT.value()); 235 return (e_machine.toString() + " " + ei_class.toString() + " " + "\ne_type: " + e_type.toString() + "\ne_machine: " + e_machine.value() + "\ne_version: " + e_version + "\ne_entry: " + e_entry + "\ne_phoff: " + e_phoff + "\ne_shoff: " + e_shoff + "\ne_flags: " + e_flags + "\ne_ehsize: " + e_ehsize + "\ne_phentsize:" + e_phentsize + "\ne_phnum: " + e_phnum + "\ne_shentsize" + e_shentsize + "\ne_shnum: " + e_shnum + "\ne_shstrndx: " + e_shstrndx); 311 private final int value; field in class:ELFAnalyzer.ELFIdentification 313 ELFIdentification(int value) argument 317 public int value() { method in class:ELFAnalyzer.ELFIdentification 331 private final int value; field in class:ELFAnalyzer.EI_Class 333 EI_Class(int value) argument 337 valueOf(byte value) argument 347 public int value() { method in class:ELFAnalyzer.EI_Class 362 private final int value; field in class:ELFAnalyzer.EI_Data 364 EI_Data(int value) argument 368 valueOf(byte value) argument 378 public int value() { method in class:ELFAnalyzer.EI_Data 395 private final int value; field in class:ELFAnalyzer.E_Type 397 E_Type(int value) argument 401 valueOf(short value) argument 413 public int value() { method in class:ELFAnalyzer.E_Type 443 private final int value; field in class:ELFAnalyzer.E_Machine 445 E_Machine(int value) argument 449 valueOf(short value) argument 464 public int value() { method in class:ELFAnalyzer.E_Machine 485 private final int value; field in class:ELFAnalyzer.E_Version 487 E_Version(int value) argument 491 valueOf(int value) argument 500 public int value() { method in class:ELFAnalyzer.E_Version [all...] |
/opengrok/.mvn/wrapper/ |
H A D | maven-wrapper.jar | org/apache/maven/wrapper/BootstrapMainStarter.class BootstrapMainStarter.java package org.apache.maven.wrapper public ... |