Searched refs:length (Results 401 - 425 of 6515) sorted by relevance

<<11121314151617181920>>

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DBits.java64 if (bits.length < len) {
66 System.arraycopy(bits, 0, newbits, 0, bits.length);
74 for (int i = 0; i < bits.length; i++) bits[i] = 0;
80 int[] newbits = new int[bits.length];
81 System.arraycopy(bits, 0, newbits, 0, bits.length);
108 temp.sizeTo(bits.length);
126 0 <= x && x < (bits.length << wordshift) &&
133 sizeTo(xs.bits.length);
134 for (int i = 0; i < xs.bits.length; i++)
142 sizeTo(xs.bits.length);
[all...]
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/crypto/
H A DDes.java134 for (int i = 0; i < bad_keys.length; i++) {
153 if (i + offset < input.length) {
174 if (i + offset < output.length) {
219 System.arraycopy(result, 0, output, 0, result.length);
249 Arrays.fill(cbytes, 0, cbytes.length, (byte) 0);
261 int length = (passwdBytes.length / 8) + (passwdBytes.length % 8 == 0 ? 0 : 1);
262 for (int i = 0; i < length; i++) {
290 Arrays.fill(cbytes, 0, cbytes.length, (byt
[all...]
/openjdk7/hotspot/test/testlibrary/com/oracle/java/testlibrary/
H A DStreamPumper.java55 int length;
61 while (!Thread.interrupted() && (length = localIn.read(buffer)) > 0) {
62 localOut.write(buffer, 0, length);
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DGETSTATIC.java86 Class[] cs = new Class[1 + ExceptionConstants.EXCS_FIELD_AND_METHOD_RESOLUTION.length];
89 cs, 0, ExceptionConstants.EXCS_FIELD_AND_METHOD_RESOLUTION.length);
90 cs[ExceptionConstants.EXCS_FIELD_AND_METHOD_RESOLUTION.length] =
H A DPUTSTATIC.java87 Class[] cs = new Class[1 + ExceptionConstants.EXCS_FIELD_AND_METHOD_RESOLUTION.length];
90 cs, 0, ExceptionConstants.EXCS_FIELD_AND_METHOD_RESOLUTION.length);
91 cs[ExceptionConstants.EXCS_FIELD_AND_METHOD_RESOLUTION.length] =
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xinclude/
H A DXIncludeNamespaceSupport.java59 if (fCurrentContext + 1 == fValidContext.length) {
60 boolean[] contextarray = new boolean[fValidContext.length * 2];
61 System.arraycopy(fValidContext, 0, contextarray, 0, fValidContext.length);
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/ior/
H A DObjectIdImpl.java52 for (int ctr=0; ctr<id.length; ctr++)
69 os.write_long( id.length ) ;
70 os.write_octet_array( id, 0, id.length ) ;
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orbutil/
H A DStackImpl.java64 if (top == (data.length-1)) {
65 int newSize = 2*data.length ;
67 System.arraycopy( data, 0, newData, 0, data.length ) ;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/livejvm/
H A DCStringAccessor.java58 if (data.length >= bufLen) {
61 for (int i = 0; i < data.length; i++) {
64 addr.setCIntegerAt(data.length, 1, 0);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/soql/
H A DJSJavaArrayKlass.java65 String[] res = new String[superFields.length + 1];
66 System.arraycopy(superFields, 0, res, 0, superFields.length);
67 res[superFields.length] = "dimension";
/openjdk7/jdk/src/share/classes/javax/security/auth/callback/
H A DNameCallback.java63 * or if <code>prompt</code> has a length of 0.
66 if (prompt == null || prompt.length() == 0)
83 * if <code>prompt</code> has a length of 0,
85 * or if <code>defaultName</code> has a length of 0.
88 if (prompt == null || prompt.length() == 0 ||
89 defaultName == null || defaultName.length() == 0)
H A DTextInputCallback.java64 * or if <code>prompt</code> has a length of 0.
67 if (prompt == null || prompt.length() == 0)
84 * if <code>prompt</code> has a length of 0,
86 * or if <code>defaultText</code> has a length of 0.
89 if (prompt == null || prompt.length() == 0 ||
90 defaultText == null || defaultText.length() == 0)
/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DEnumControl.java131 Object[] localArray = new Object[values.length];
133 for (int i = 0; i < values.length; i++) {
149 for (int i = 0; i < values.length; i++) {
/openjdk7/jdk/src/share/classes/javax/swing/event/
H A DEventListenerList.java72 * for (int i = listeners.length-2; i>=0; i-=2) {
113 * fire methods. A zero-length array of Object should
139 for (int i = lList.length-2; i>=0; i-=2) {
151 return listenerList.length/2;
165 for (int i = 0; i < list.length; i+=2) {
194 int i = listenerList.length;
223 for (int i = listenerList.length-2; i>=0; i-=2) {
232 Object[] tmp = new Object[listenerList.length-2];
238 if (index < tmp.length)
240 tmp.length
[all...]
/openjdk7/jdk/src/share/classes/java/io/
H A DBufferedOutputStream.java46 * in the range <tt>0</tt> through <tt>buf.length</tt>; elements
94 if (count >= buf.length) {
106 * needed. If the requested length is at least as large as this stream's
117 if (len >= buf.length) {
118 /* If the request length exceeds the size of the output buffer,
125 if (len > buf.length - count) {
H A DStringBufferInputStream.java74 count = s.length();
114 } else if ((off < 0) || (off > b.length) || (len < 0) ||
115 ((off + len) > b.length) || ((off + len) < 0)) {
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DSwitchPoint.java218 if (switchPoints.length == 0) return;
219 MutableCallSite[] sites = new MutableCallSite[switchPoints.length];
220 for (int i = 0; i < switchPoints.length; i++) {
/openjdk7/jdk/src/share/classes/java/sql/
H A DClob.java42 * length of an SQL <code>CLOB</code> (Character Large Object) value,
65 * @return length of the <code>CLOB</code> in characters
67 * length of the <code>CLOB</code> value
72 long length() throws SQLException; method in interface:Clob
79 * <code>pos</code> and has up to <code>length</code> consecutive
84 * @param length the number of consecutive characters to be copied;
85 * the value for length must be 0 or greater
89 * <code>CLOB</code> value; if pos is less than 1 or length is
95 String getSubString(long pos, int length) throws SQLException; argument
174 * while writing the given string, then the length o
346 getCharacterStream(long pos, long length) argument
[all...]
/openjdk7/hotspot/test/compiler/7179138/
H A DTest7179138_1.java44 int len = s.length();
55 if (s.length() != len) {
57 System.out.println("Length mismatch: " + s.length() + " <> " + len);
H A DTest7179138_2.java44 int len = s.length();
55 if (s.length() != len) {
57 System.out.println("Length mismatch: " + s.length() + " <> " + len);
/openjdk7/jdk/make/tools/src/build/tools/compilefontconfig/
H A DCompileFontConfig.java37 if (argv.length != 0 && "-verbose".equals(argv[0])) {
41 if (argv.length != 3)
46 if (argv.length != 2)
/openjdk7/hotspot/src/share/vm/runtime/
H A DstackValueCollection.hpp38 StackValueCollection(int length) { _values = new GrowableArray<StackValue*>(length); } argument
41 int size() const { return _values->length(); }
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/istack/internal/
H A DByteArrayDataSource.java45 this(buf,buf.length,contentType);
47 public ByteArrayDataSource(byte[] buf, int length, String contentType) { argument
49 this.len = length;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/util/
H A DClassNameInfo.java36 int len = className.length();
41 ? className.substring(qual.length() + 1, len)
63 idot = className.length();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/tools/
H A DTransformInputOutput.java54 if (args.length == 0) {
57 } else if (args.length == 1) {
60 } else if (args.length == 2) {
109 if (fileStr.startsWith(oldwdStr) && (cmpStr = fileStr.substring(oldwdStr.length())).indexOf('/') == -1) {
118 for(diff = 0; diff<oldwdSplit.length & diff<fileSplit.length; diff++) {
125 for(diffNew=0; diffNew<newwdSplit.length && diffNew<fileSplit.length; diffNew++) {
137 int elemsToSub = oldwdSplit.length - diff;
139 for(int i=0; i<newwdSplit.length
[all...]

Completed in 79 milliseconds

<<11121314151617181920>>