Search Results
OK to copy?
Examples 1 through 10 of
41 (0.0030 seconds)
Class:
org.htmlparser.scanners.BulletListScanner
©,
Rating:
0% of 0,
C1
Class: org.apache.tools.ant.types.Substitution ©, Rating: 0% of 0, C1
Class: org.apache.tomcat.util.log.SystemLogHandler ©, Rating: 0% of 0, C1
Class: org.apache.tomcat.util.log.SystemLogHandler ©, Rating: 0% of 0, C1
Class: org.apache.tools.ant.types.RegularExpression ©, Rating: 0% of 0, C1
Class: org.apache.jasper.compiler.Mark ©, Rating: 0% of 0, C1
Class: org.apache.jasper.compiler.Mark ©, Rating: 0% of 0, C1
Class: org.apache.tools.ant.util.CollectionUtilsTest ©, Rating: 0% of 0, C2
Class: org.apache.batik.svggen.SVGTransform ©, Rating: 0% of 0, C1
Class: org.apache.tools.ant.taskdefs.optional.depend.DirectoryIterator ©, Rating: 0% of 0, C1
46 private static final String[] MATCH_STRING = { "UL" };
47 private final static String ENDERS[] = { "BODY", "HTML" };
48 private Stack ulli = new Stack();
49
50 public BulletListScanner(Parser parser)
Class: org.apache.tools.ant.types.Substitution ©, Rating: 0% of 0, C1
65 public Substitution getRef(Project p) {
66 if (!isChecked()) {
67 Stack stk = new Stack();
68 stk.push(this);
69 dieOnCircularReference(stk, p);
Class: org.apache.tomcat.util.log.SystemLogHandler ©, Rating: 0% of 0, C1
065 * Spare CaptureLog ready for reuse.
066 */
067 protected static Stack reuse = new Stack();
068
069
Class: org.apache.tomcat.util.log.SystemLogHandler ©, Rating: 0% of 0, C1
085 if (stack == null) {
086 stack = new Stack();
087 logs.put(thread, stack);
088 }
089 stack.push(log);
Class: org.apache.tools.ant.types.RegularExpression ©, Rating: 0% of 0, C1
101 public RegularExpression getRef(Project p) {
102 if (!isChecked()) {
103 Stack stk = new Stack();
104 stk.push(this);
105 dieOnCircularReference(stk, p);
Class: org.apache.jasper.compiler.Mark ©, Rating: 0% of 0, C1
101
102 // clone includeStack without cloning contents
103 includeStack = new Stack();
104 for ( int i=0; i < other.includeStack.size(); i++ ) {
105 includeStack.addElement( other.includeStack.elementAt(i) );
Class: org.apache.jasper.compiler.Mark ©, Rating: 0% of 0, C1
080 this.baseDir = inBaseDir;
081 this.encoding = inEncoding;
082 this.includeStack = new Stack();
083 }
084
Class: org.apache.tools.ant.util.CollectionUtilsTest ©, Rating: 0% of 0, C2
040 assertTrue(CollectionUtils.equals(new Vector(), new Vector()));
041 Vector v1 = new Vector();
042 Stack s2 = new Stack();
043 v1.addElement("foo");
044 s2.push("foo");
Class: org.apache.batik.svggen.SVGTransform ©, Rating: 0% of 0, C1
140 * Adapted pop implementation
141 */
142 public Object pop() {
143 Object element = null;
144 if(!super.empty()) {
Class: org.apache.tools.ant.taskdefs.optional.depend.DirectoryIterator ©, Rating: 0% of 0, C1
070 super();
071
072 enumStack = new Stack();
073
074 if (rootDirectory.isAbsolute() || changeInto) {