Search Results
OK to copy?
Examples 1 through 10 of
24 (0.0030 seconds)
Class:
org.apache.batik.svggen.font.table.DirectoryEntry
©,
Rating:
0% of 0,
C1
Class: org.apache.axis.transport.http.ChunkedOutputStream ©, Rating: 0% of 0, C1
Class: org.springframework.util.ObjectUtils ©, Rating: 0% of 0, C1
Class: org.apache.jk.core.Msg ©, Rating: 0% of 0, C1
Class: org.apache.jmeter.assertions.MD5HexAssertion ©, Rating: 0% of 0, C1
Class: org.apache.batik.util.ParsedURLDataTest ©, Rating: 0% of 0, C2
Class: org.apache.tomcat.util.net.jsse.JSSESupport ©, Rating: 0% of 0, C2
Class: org.apache.tools.ant.taskdefs.optional.jsp.Jasper41Mangler ©, Rating: 0% of 0, C1
Class: org.apache.jmeter.protocol.java.test.SleepTest ©, Rating: 0% of 0, C1
Class: org.apache.tools.ant.filters.EscapeUnicode ©, Rating: 0% of 0, C2
090
091 public String toString() {
092 return new StringBuffer()
093 .append((char)((tag>>24)&0xff))
094 .append((char)((tag>>16)&0xff))
Class: org.apache.axis.transport.http.ChunkedOutputStream ©, Rating: 0% of 0, C1
096 if (len == 0) return;
097
098 out.write((Integer.toHexString(len)).getBytes());
099 out.write(crlf);
100 out.write(b, off, len);
Class: org.springframework.util.ObjectUtils ©, Rating: 0% of 0, C1
048 */
049 public static String getIdentityHexString(Object o) {
050 return Integer.toHexString(System.identityHashCode(o));
051 }
052
Class: org.apache.jk.core.Msg ©, Rating: 0% of 0, C1
145 private static String hex( int x ) {
146 // if( x < 0) x=256 + x;
147 String h=Integer.toHexString( x );
148 if( h.length() == 1 ) h = "0" + h;
149 return h.substring( h.length() - 2 );
Class: org.apache.jmeter.assertions.MD5HexAssertion ©, Rating: 0% of 0, C1
110 int j = ba[i]&0xff;
111 if (j < 16) sb.append("0");
112 sb.append(Integer.toHexString(j));
113 }
114 return sb.toString();
Class: org.apache.batik.util.ParsedURLDataTest ©, Rating: 0% of 0, C2
Class: org.apache.tomcat.util.net.jsse.JSSESupport ©, Rating: 0% of 0, C2
166 StringBuffer buf=new StringBuffer("");
167 for(int x=0; x<ssl_session.length; x++) {
168 String digit=Integer.toHexString((int)ssl_session[x]);
169 if (digit.length()<2) buf.append('0');
170 if (digit.length()>2) digit=digit.substring(digit.length()-2);
Class: org.apache.tools.ant.taskdefs.optional.jsp.Jasper41Mangler ©, Rating: 0% of 0, C1
64 private static final String mangleChar(char ch) {
65
66 String s = Integer.toHexString(ch);
67 int nzeros = 5 - s.length();
68 char[] result = new char[6];
Class: org.apache.jmeter.protocol.java.test.SleepTest ©, Rating: 0% of 0, C1
237 sb.append(Thread.currentThread().toString());
238 sb.append("@");
239 sb.append(Integer.toHexString(hashCode()));
240 return sb.toString();
241 }
Class: org.apache.tools.ant.filters.EscapeUnicode ©, Rating: 0% of 0, C2
086 if (achar >= '\u0080') {
087 unicodeBuf = new StringBuffer("u0000");
088 String s = Integer.toHexString(ch);
089 //replace the last 0s by the chars contained in s
090 for (int i = 0; i < s.length(); i++) {