Searched refs:branches (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DInstructionAssembler.java46 int[] branches;
61 // Unpack instructions into temp. arrays, and find branches and labels.
97 branches = new int[branchCount + 1];
98 System.arraycopy(buffer, 0, branches, 0, branchCount);
99 branches[branchCount] = -1; // sentinel
166 assert (branches[bn] == id);
168 // make local copies of the branches, and fix up labels
219 // compute branch offsets, and see if any branches need expansion
223 for (int bn = 0; bn < branches.length - 1; bn++) {
224 int id = branches[b
[all...]
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/toJavaPortable/
H A DUnionGen.java157 // Write branches and populate quality arrays
158 int size = u.branches ().size () + 1;
159 Enumeration e = u.branches ().elements ();
192 e = u.branches ().elements ();
259 Vector labels = vectorizeLabels (u.branches (), true);
300 Vector labels = vectorizeLabels (u.branches (), false );
389 Enumeration branches = branchVector.elements ();
390 while (branches.hasMoreElements ())
392 UnionBranch branch = (UnionBranch)branches.nextElement ();
418 Enumeration e = u.branches ()
[all...]
H A DCompile.java346 Enumeration branches = ((UnionEntry)element).branches ().elements ();
347 while (branches.hasMoreElements ())
348 Util.fillInfo (((UnionBranch)branches.nextElement ()).typedef);
H A DUtil.java862 // Look through the branches
863 Enumeration branches = u.branches ().elements ();
864 while (branches.hasMoreElements ())
866 UnionBranch branch = (UnionBranch)branches.nextElement ();
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DOp.java173 Vector branches; field in class:Op.UnionOp
176 this.branches = new Vector(size);
179 this.branches.addElement(op);
182 return this.branches.size();
185 return (Op)this.branches.elementAt(index);
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/util/
H A DBCELFactory.java260 private ArrayList branches = new ArrayList(); field in class:BCELFactory
269 branches.add(bi);
302 branches.add(bi);
323 for(Iterator i = branches.iterator(); i.hasNext(); ) {
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DUnionEntry.java109 public Vector branches () method in class:UnionEntry
112 } // branches
115 Like the entries in the branches vector, only the type and name fields
123 Like the entries in the branches vector, only the type and name fields
H A DParser.java2237 Enumeration branches = u.branches ().elements ();
2238 while (branches.hasMoreElements ())
2240 UnionBranch branch = (UnionBranch)branches.nextElement ();

Completed in 79 milliseconds