Search Results
OK to copy?
Examples 1 through 10 of
310 (0.0040 seconds)
Class:
org.springframework.aop.framework.AopProxyUtils
©,
Rating:
0% of 0,
C2
Class: org.springframework.orm.hibernate.support.BlobByteArrayType ©, Rating: 0% of 0, C1
Class: org.apache.tomcat.util.collections.SimplePool ©, Rating: 0% of 0, C2
Class: org.apache.axis.utils.CLOption ©, Rating: 0% of 0, C1
Class: org.htmlparser.tests.parserHelperTests.AllTests ©, Rating: 0% of 0, C2
Class: org.htmlparser.tests.parserHelperTests.AllTests ©, Rating: 0% of 0, C2
Class: org.htmlparser.tests.parserHelperTests.AllTests ©, Rating: 0% of 0, C2
Class: org.htmlparser.tests.AllTests ©, Rating: 0% of 0, C2
Class: org.htmlparser.tests.AllTests ©, Rating: 0% of 0, C2
Class: org.htmlparser.tests.AllTests ©, Rating: 0% of 0, C2
38 proxiedInterfaces = new Class[specifiedInterfaces.length + 1];
39 proxiedInterfaces[0] = Advised.class;
40 System.arraycopy(specifiedInterfaces, 0, proxiedInterfaces, 1, specifiedInterfaces.length);
41 }
42 return proxiedInterfaces;
Class: org.springframework.orm.hibernate.support.BlobByteArrayType ©, Rating: 0% of 0, C1
084 byte[] original = (byte[]) value;
085 byte[] copy = new byte[original.length];
086 System.arraycopy(original, 0, copy, 0, original.length);
087 return copy;
088 }
Class: org.apache.tomcat.util.collections.SimplePool ©, Rating: 0% of 0, C2
072 Object tmp[]=new Object[newSize];
073 last=newSize-1;
074 System.arraycopy( pool, 0, tmp, 0, pool.length);
075 pool=tmp;
076 current++;
Class: org.apache.axis.utils.CLOption ©, Rating: 0% of 0, C1
101 {
102 final String[] arguments = new String[ m_arguments.length + 1 ];
103 System.arraycopy( m_arguments, 0, arguments, 0, m_arguments.length );
104 arguments[ m_arguments.length ] = argument;
105 m_arguments = arguments;
Class: org.htmlparser.tests.parserHelperTests.AllTests ©, Rating: 0% of 0, C2
097 // append the test class
098 arguments = new String[args.length + 1];
099 System.arraycopy(args, 0, arguments, 0, args.length);
100 arguments[args.length] =
101 "org.htmlparser.tests.parserHelperTests.AllTests";
Class: org.htmlparser.tests.parserHelperTests.AllTests ©, Rating: 0% of 0, C2
089 arguments = new String[args.length - 1];
090 System.arraycopy(args, 0, arguments, 0, i - 1);
091 System.arraycopy(args, i, arguments, i - 1, args.length - i);
092 args = arguments;
093 }
Class: org.htmlparser.tests.parserHelperTests.AllTests ©, Rating: 0% of 0, C2
088 // remove it from the arguments
089 arguments = new String[args.length - 1];
090 System.arraycopy(args, 0, arguments, 0, i - 1);
091 System.arraycopy(args, i, arguments, i - 1, args.length - i);
092 args = arguments;
Class: org.htmlparser.tests.AllTests ©, Rating: 0% of 0, C2
084 // append the test class
085 arguments = new String[args.length + 1];
086 System.arraycopy(args, 0, arguments, 0, args.length);
087 arguments[args.length] = "org.htmlparser.tests.AllTests";
088
Class: org.htmlparser.tests.AllTests ©, Rating: 0% of 0, C2
076 arguments = new String[args.length - 1];
077 System.arraycopy(args, 0, arguments, 0, i - 1);
078 System.arraycopy(args, i, arguments, i - 1, args.length - i);
079 args = arguments;
080 }
Class: org.htmlparser.tests.AllTests ©, Rating: 0% of 0, C2
075 // remove it from the arguments
076 arguments = new String[args.length - 1];
077 System.arraycopy(args, 0, arguments, 0, i - 1);
078 System.arraycopy(args, i, arguments, i - 1, args.length - i);
079 args = arguments;