Searched defs:str (Results 1 - 8 of 8) sorted by relevance

/opengrok/src/org/opensolaris/opengrok/util/
H A DStringUtils.java42 * @param str the string to be checked
45 public static boolean isOnlyWhitespace(String str) { argument
46 for (int i = 0; i < str.length(); i++) {
47 if (!Character.isWhitespace(str.charAt(i))) {
/opengrok/jrcs/src/main/java/org/apache/commons/jrcs/rcs/
H A DParseException.java147 protected String add_escapes(String str) { argument
150 for (int i = 0; i < str.length(); i++) {
151 switch (str.charAt(i))
180 if ((ch = str.charAt(i)) < 0x20 || ch > 0x7e) {
H A DTokenMgrError.java40 protected static final String addEscapes(String str) { argument
43 for (int i = 0; i < str.length(); i++) {
44 switch (str.charAt(i))
73 if ((ch = str.charAt(i)) < 0x20 || ch > 0x7e) {
/opengrok/src/org/opensolaris/opengrok/analysis/
H A DJFlexTokenizer.java99 protected void setAttribs(String str, int start, int end) { argument
105 this.termAtt.append(str);
/opengrok/src/org/opensolaris/opengrok/search/context/
H A DHistoryContext.java230 * @param str the string to print
234 private void printHTML(Appendable out, String str, boolean flatten) argument
236 for (int i = 0; i < str.length(); i++) {
237 char ch = str.charAt(i);
/opengrok/src/org/opensolaris/opengrok/web/
H A DUtil.java1096 String str = (cell == null) ? "null" : cell.toString();
1097 htmlize(str, buf);
1098 out.append(str);
1129 * @param str the string to be represented by the literal
1132 public static String jsStringLiteral(String str) { argument
1135 for (int i = 0; i < str.length(); i++) {
1136 char c = str.charAt(i);
/opengrok/src/org/opensolaris/opengrok/history/
H A DJDBCHistoryCache.java520 * @param str the string to truncate
526 private static String truncate(String str, int length) { argument
527 if (str.length() < length) {
532 ? str.substring(0, length)
533 : (str.substring(0, length - suffix.length()) + suffix);
/opengrok/lib/
H A Dbcel-6.0.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ ...

Completed in 157 milliseconds