Search Results
OK to copy?
Examples 1 through 10 of
12 (0.096 seconds)
Class:
org.apache.tools.ant.types.FlexInteger
©,
Rating:
100% of 2,
C1
Class: org.htmlparser.tests.PerformanceTest ©, Rating: 0% of 0, C1
Class: org.apache.jmeter.protocol.java.sampler.JavaSamplerContext ©, Rating: 0% of 0, C1
Class: org.apache.jmeter.protocol.java.sampler.JavaSamplerContext ©, Rating: 0% of 0, C1
Class: org.apache.batik.apps.slideshow.Main ©, Rating: 0% of 0, C3
Class: org.apache.batik.apps.slideshow.Main ©, Rating: 0% of 0, C3
Class: org.apache.batik.apps.slideshow.Main ©, Rating: 0% of 0, C3
Class: org.apache.batik.apps.slideshow.Main ©, Rating: 0% of 0, C3
Class: org.apache.batik.apps.slideshow.Main ©, Rating: 0% of 0, C3
Class: org.apache.catalina.core.NamingContextListener ©, Rating: 0% of 0, C3
Class: org.htmlparser.tests.PerformanceTest ©, Rating: 0% of 0, C1
119 String file = args[0];
120 String numTimesString = args[1];
121 int numTimes = Integer.decode(numTimesString).intValue();
122 PerformanceTest pt = new PerformanceTest(file,numTimes);
123 try {
Class: org.apache.jmeter.protocol.java.sampler.JavaSamplerContext ©, Rating: 0% of 0, C1
187 try
188 {
189 return Integer.decode((String) params.get(name)).intValue();
190 }
191 catch (NumberFormatException e)
Class: org.apache.jmeter.protocol.java.sampler.JavaSamplerContext ©, Rating: 0% of 0, C1
Class: org.apache.batik.apps.slideshow.Main ©, Rating: 0% of 0, C3
423 String hStr = args[i+1].substring(idx+1);
424 w = Integer.decode(wStr).intValue();
425 h = Integer.decode(hStr).intValue();
426 }
427 d = new Dimension(w, h);
Class: org.apache.batik.apps.slideshow.Main ©, Rating: 0% of 0, C3
422 String wStr = args[i+1].substring(0,idx);
423 String hStr = args[i+1].substring(idx+1);
424 w = Integer.decode(wStr).intValue();
425 h = Integer.decode(hStr).intValue();
426 }
Class: org.apache.batik.apps.slideshow.Main ©, Rating: 0% of 0, C3
418 int w, h;
419 if (idx == -1)
420 w = h = Integer.decode(args[i+1]).intValue();
421 else {
422 String wStr = args[i+1].substring(0,idx);
Class: org.apache.batik.apps.slideshow.Main ©, Rating: 0% of 0, C3
400 }
401 try {
402 duration = Integer.decode(args[i+1]).intValue();
403 i++;
404 } catch (NumberFormatException nfe) {
Class: org.apache.batik.apps.slideshow.Main ©, Rating: 0% of 0, C3
386 }
387 try {
388 frameDelay = Integer.decode(args[i+1]).intValue();
389 i++;
390 } catch (NumberFormatException nfe) {
Class: org.apache.catalina.core.NamingContextListener ©, Rating: 0% of 0, C3
685 value = new Integer(0);
686 } else {
687 value = Integer.decode(env.getValue());
688 }
689 } else if (type.equals("java.lang.Long")) {