e.g. Calendar Search Help
You must enter a value before pressing Search
Search Results OK to copy? Examples 1 through 10 of 11 (0.009000000000000001 seconds)
Class: util.HTMLFilter  ©, Rating: 0% of 0, C2

40 41 char content[] = new char[message.length()]; 42 message.getChars(0, message.length(), content, 0); 43 StringBuffer result = new StringBuffer(content.length + 50); 44 for (int i = 0; i < content.length; i++) {

Class: util.HTMLFilter  ©, Rating: 0% of 0, C2

41 char content[] = new char[message.length()]; 42 message.getChars(0, message.length(), content, 0); 43 StringBuffer result = new StringBuffer(content.length + 50); 44 for (int i = 0; i < content.length; i++) { 45 switch (content[i]) {

Class: util.HTMLFilter  ©, Rating: 0% of 0, C2

40 41 char content[] = new char[message.length()]; 42 message.getChars(0, message.length(), content, 0); 43 StringBuffer result = new StringBuffer(content.length + 50); 44 for (int i = 0; i < content.length; i++) {

Class: util.HTMLFilter  ©, Rating: 100% of 1, C2

41 char content[] = new char[message.length()]; 42 message.getChars(0, message.length(), content, 0); 43 StringBuffer result = new StringBuffer(content.length + 50); 44 for (int i = 0; i < content.length; i++) { 45 switch (content[i]) {

Class: org.apache.tomcat.util.http.HttpMessages  ©, Rating: 0% of 0, C2

081 082 char content[] = new char[message.length()]; 083 message.getChars(0, message.length(), content, 0); 084 StringBuffer result = new StringBuffer(content.length + 50); 085 for (int i = 0; i < content.length; i++) {

Class: org.apache.catalina.util.RequestUtil  ©, Rating: 0% of 0, C2

114 115 char content[] = new char[message.length()]; 116 message.getChars(0, message.length(), content, 0); 117 StringBuffer result = new StringBuffer(content.length + 50); 118 for (int i = 0; i < content.length; i++) {

Class: org.apache.jasper.runtime.JspWriterImpl  ©, Rating: 0% of 0, C2

317 while (b < t) { 318 int d = min(bufferSize - nextChar, t - b); 319 s.getChars(b, b + d, cb, nextChar); 320 b += d; 321 nextChar += d;

Class: org.apache.jasper.runtime.BodyContentImpl  ©, Rating: 0% of 0, C1

141 reAllocBuff(len); 142 143 s.getChars(off, off + len, cb, nextChar); 144 nextChar += len; 145 }

Class: org.apache.tomcat.util.buf.CharChunk  ©, Rating: 0% of 0, C2

366 while (sOff < sEnd) { 367 int d = min(limit - end, sEnd - sOff); 368 s.getChars( sOff, sOff+d, buff, end); 369 sOff += d; 370 end += d;

Class: org.apache.tomcat.util.buf.CharChunk  ©, Rating: 0% of 0, C2

357 if( limit < 0 ) { 358 // assert: makeSpace made enough space 359 s.getChars(off, off+len, buff, end ); 360 end+=len; 361 return;

Result Page:  1  |  2   Next