Searched refs:length (Results 501 - 525 of 6515) sorted by relevance

<<21222324252627282930>>

/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/model/
H A DStackTrace.java59 if (depth >= frames.length) {
69 for (int i = 0; i < frames.length; i++) {
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/
H A DBootClassPathMinus.java34 StringBuffer newPath = new StringBuffer(bootClassPath.length());
44 if (newPath.length() > 0) newPath.append(java.io.File.pathSeparatorChar);
/openjdk7/hotspot/test/compiler/6636138/
H A DTest1.java36 for (int i =0; i<src.length; i++) {
45 for (int i = 0; i < src.length; i++) {
/openjdk7/hotspot/test/compiler/6910618/
H A DTest.java54 } while (s.length() < maxLength);
59 maxLength = toAdd.length() * 15000/ numberOfThreads;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJJavaName.java42 if(s.length()==0) return false;
47 for (int i = 1; i < s.length(); i++)
65 while(s.length()!=0) {
67 if(idx==-1) idx=s.length();
72 if(s.length()!=0) s = s.substring(1); // remove '.'
103 for(int i=0; i<word.length(); i++ ) {
246 TABLE = new Entry[source.length/2];
248 for( int i=0; i<source.length; i+=2 ) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/util/
H A DForkContentHandler.java61 if(handlers.length==0)
65 for( int i=1; i<handlers.length; i++ )
108 public void characters (char ch[], int start, int length) throws SAXException { argument
109 lhs.characters(ch,start,length);
110 rhs.characters(ch,start,length);
113 public void ignorableWhitespace (char ch[], int start, int length) throws SAXException { argument
114 lhs.ignorableWhitespace(ch,start,length);
115 rhs.ignorableWhitespace(ch,start,length);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/sax/
H A DSystemIdResolver.java38 if (localPath == null || localPath.length() == 0) {
83 int index = systemId.length() -1;
107 if (systemId.length() > 2
118 int length = buf.length();
119 for (int i = 0; i < length; i++) {
125 length = length + 2;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/fastinfoset/
H A DEncodingAlgorithm.java36 public Object decodeFromBytes(byte[] b, int start, int length) throws EncodingAlgorithmException; argument
44 public Object convertFromCharacters(char[] ch, int start, int length) throws EncodingAlgorithmException; argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/stream/buffer/stax/
H A DStreamWriterBufferProcessor.java132 final int length = readStructure();
133 final int start = readContentCharactersBuffer(length);
134 final String comment = new String(_contentCharactersBuffer, start, length);
140 final int length = readStructure16();
141 final int start = readContentCharactersBuffer(length);
142 final String comment = new String(_contentCharactersBuffer, start, length);
231 final int length = readStructure();
232 final int start = readContentCharactersBuffer(length);
233 writer.writeCharacters(_contentCharactersBuffer,start,length);
237 final int length
[all...]
/openjdk7/jdk/test/com/sun/crypto/provider/Cipher/AES/
H A DTestShortBuffer.java66 this.out = new byte[expected.length];
72 for (int i = 0; i < MODES.length; i++) {
119 stored = ci.update(in, 0, in.length, SHORTBUFFER);
124 stored = ci.update(in, 0, in.length, out);
126 if (out.length != (stored + outOffset)) {
137 System.arraycopy(out1, 0, out, 0, out1.length);
138 outOffset += out1.length;
141 stored = ci.update(in, offset, in.length-offset, SHORTBUFFER);
146 stored = ci.update(in, offset, in.length-offset,
149 if (out.length !
[all...]
/openjdk7/jdk/test/java/beans/XMLEncoder/
H A DTest4646747.java47 obs = new Object[obs.length + obs.length / 3];
/openjdk7/jdk/test/java/io/File/
H A DWinSpecialFiles.java26 @summary Check if File.exists()/length() works correctly on Windows
39 for (int i = 0; i < dir.length; i++) {
47 if (dir[i].length() == 0) {
/openjdk7/jdk/test/java/io/Serializable/lookupInterfaceDesc/
H A DLookupInterfaceDesc.java47 (desc.getFields().length != 0))
54 (desc.getFields().length != 0))
/openjdk7/jdk/test/java/io/Serializable/oldTests/
H A DArraysOfArrays.java88 for (int ix = 0; ix < b_u.length; ix++) {
89 for(int iy = 0; iy < b_u[ix].length; iy++) {
101 for (int ix = 0; ix < b_u.length; ix++) {
102 for(int iy = 0; iy < b_u[ix].length; iy++) {
113 for (int ix = 0; ix < b_u.length; ix++) {
114 for(int iy = 0; iy < b_u[ix].length; iy++) {
125 for (int ix = 0; ix < b_u.length; ix++) {
126 for(int iy = 0; iy < b_u[ix].length; iy++) {
137 for (int ix = 0; ix < b_u.length; ix++) {
138 for(int iy = 0; iy < b_u[ix].length; i
[all...]
/openjdk7/jdk/test/java/io/Serializable/primitiveClasses/
H A DPrimitiveClasses.java40 for (int i = 0; i < primClasses.length; i++) {
48 for (int i = 0; i < primClasses.length; i++) {
/openjdk7/jdk/test/java/io/charStreams/
H A DWriteLengths.java47 if (ba.length != len) {
48 log.println("FAIL: Wrote " + len + ", got " + ba.length
/openjdk7/jdk/test/java/lang/String/
H A DContentEquals.java50 int length = rnd.nextInt(STR_LEN) + 1;
52 for(int x=0; x<length; x++) {
68 int length = rnd.nextInt(STR_LEN) + 1;
70 for(int x=0; x<length; x++) {
87 int length = rnd.nextInt(STR_LEN) + 1;
89 for(int x=0; x<length; x++) {
106 int length = rnd.nextInt(STR_LEN) + 1;
108 for(int x=0; x<length; x++) {
H A DSBConstructor.java36 int length = rnd.nextInt(20) + 1;
39 for(int x=0; x<length; x++) {
/openjdk7/jdk/test/java/lang/instrument/
H A DASimpleInstrumentationTestCase.java58 for ( int x = 0; x < list.length; x++ )
72 for ( int x = 0; x < list.length; x++ )
H A DBufferClassLoader.java48 for ( int x = 0; x < fBuffers.length; x++ )
56 buffer.length,
/openjdk7/jdk/test/java/net/MulticastSocket/
H A DTimeToLive.java43 for (int i = 0; i < new_ttls.length; i++) {
51 for (int j = 0; j < bad_ttls.length; j++) {
/openjdk7/jdk/test/java/net/URLClassLoader/
H A DB6827999.java47 if (urls.length != 2)
53 if (ucl.getURLs().length != 2) {
/openjdk7/jdk/test/java/nio/charset/Charset/
H A DCharsetContainmentTest.java103 for (int i = 0; i < encodings.length; i++) {
105 for (int j = 0 ; j < contains[i].length; j++) {
/openjdk7/jdk/test/sun/tools/jrunscript/
H A Djrunscript-argsTest.sh48 if (arguments.length != 2) { println("2 arguments are expected here"); exit(1); }
/openjdk7/jdk/test/sun/util/resources/Locale/
H A DBug6275682.java16 for (int i = 0; i < isoLangs.length; i++) {
25 if (error.length () > 0){

Completed in 87 milliseconds

<<21222324252627282930>>