Search Results
OK to copy?
Examples 1 through 10 of
635 (0.0040 seconds)
Class:
jsp2.examples.el.Functions
©,
Rating:
83% of 6,
C1
Class: org.apache.tomcat.util.http.ContentType ©, Rating: 100% of 1, C3
Class: jsp2.examples.el.Functions ©, Rating: 0% of 1, C1
Class: com.technoetic.xplanner.tags.AccessKeyTransformer ©, Rating: 0% of 0, C2
Class: org.springframework.web.util.JavaScriptUtils ©, Rating: 100% of 1, C3
Class: org.apache.batik.util.io.StringDecoder ©, Rating: 0% of 0, C1
Class: org.apache.tomcat.util.http.ContentType ©, Rating: 100% of 1, C3
Class: org.springframework.beans.propertyeditors.PropertiesEditor ©, Rating: 0% of 0, C2
Class: org.apache.axis.types.NMToken ©, Rating: 0% of 0, C1
Class: org.apache.batik.css.engine.sac.CSSOneOfAttributeCondition ©, Rating: 0% of 0, C2
32 int result = 0;
33 for( int i = 0; i < text.length(); i++ ) {
34 if( vowels.indexOf( text.charAt( i ) ) != -1 ) {
35 result++;
36 }
Class: org.apache.tomcat.util.http.ContentType ©, Rating: 100% of 1, C3
69 while (index != -1) {
70 index++;
71 while (index < len && Character.isSpace(type.charAt(index))) {
72 index++;
73 }
Class: jsp2.examples.el.Functions ©, Rating: 0% of 1, C1
32 int result = 0;
33 for( int i = 0; i < text.length(); i++ ) {
34 if( vowels.indexOf( text.charAt( i ) ) != -1 ) {
35 result++;
36 }
Class: com.technoetic.xplanner.tags.AccessKeyTransformer ©, Rating: 0% of 0, C2
23 int pos = text.indexOf('&');
24 if (pos == -1 || pos == text.length()-1) return 0;
25 char mnemonic = Character.toUpperCase(text.charAt(pos + 1));
26 if (!Character.isLetterOrDigit(mnemonic)) return 0;
27 return mnemonic;
Class: org.springframework.web.util.JavaScriptUtils ©, Rating: 100% of 1, C3
46 char c;
47 for (int i = 0; i < input.length(); i++) {
48 c = input.charAt(i);
49 if (c == '"') {
50 filtered.append("\\\"");
Class: org.apache.batik.util.io.StringDecoder ©, Rating: 0% of 0, C1
Class: org.apache.tomcat.util.http.ContentType ©, Rating: 100% of 1, C3
72 index++;
73 }
74 if (index+8 < len
75 && type.charAt(index) == 'c'
76 && type.charAt(index+1) == 'h'
Class: org.springframework.beans.propertyeditors.PropertiesEditor ©, Rating: 0% of 0, C2
88 String key = (String) keys.next();
89 // A comment line starts with one of our comment markers
90 if (key.length() > 0 && COMMENT_MARKERS.indexOf(key.charAt(0)) != -1) {
91 keys.remove();
92 }
Class: org.apache.axis.types.NMToken ©, Rating: 0% of 0, C1
101
102 for (scan=0; scan < stValue.length(); scan++) {
103 if (XMLChar.isName(stValue.charAt(scan)) == false)
104 return false;
105 }
Class: org.apache.batik.css.engine.sac.CSSOneOfAttributeCondition ©, Rating: 0% of 0, C2
093 }
094 int j = i + val.length();
095 return (j == attr.length() ||
096 (j < attr.length() && Character.isSpaceChar(attr.charAt(j))));
097 }