Searched refs:targets (Results 1 - 25 of 27) sorted by relevance

12

/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DTargetLostException.java76 * InstructionHandle[] targets = e.getTargets();
77 * for(int i=0; i < targets.length; i++) {
78 * InstructionTargeter[] targeters = targets[i].getTargeters();
81 * targeters[j].updateTarget(targets[i], new_target);
92 private InstructionHandle[] targets; field in class:TargetLostException
96 targets = t;
102 public InstructionHandle[] getTargets() { return targets; }
H A DSelect.java76 protected InstructionHandle[] targets; // target objects in instruction list field in class:Select
89 * `Match' and `targets' must have the same length of course.
92 * @param targets instruction targets
95 Select(short opcode, int[] match, InstructionHandle[] targets, argument
99 this.targets = targets;
100 for(int i=0; i < targets.length; i++) {
101 BranchInstruction.notifyTargetChanged(targets[i], this);
106 if((match_length = match.length) != targets
[all...]
H A DSWITCH.java70 private InstructionHandle[] targets; field in class:SWITCH
85 * @param targets the instructions to be branched to for each case
89 public SWITCH(int[] match, InstructionHandle[] targets, argument
92 this.targets = (InstructionHandle[])targets.clone();
95 instruction = new TABLESWITCH(match, targets, target);
102 instruction = new TABLESWITCH(this.match, this.targets, target);
105 instruction = new LOOKUPSWITCH(this.match, this.targets, target);
109 public SWITCH(int[] match, InstructionHandle[] targets, argument
111 this(match, targets, targe
[all...]
H A DLOOKUPSWITCH.java76 public LOOKUPSWITCH(int[] match, InstructionHandle[] targets, argument
78 super(com.sun.org.apache.bcel.internal.Constants.LOOKUPSWITCH, match, targets, target);
95 out.writeInt(indices[i] = getTargetOffset(targets[i]));
112 targets = new InstructionHandle[match_length];
H A DTABLESWITCH.java79 * @param targets where to branch for matched values
82 public TABLESWITCH(int[] match, InstructionHandle[] targets, argument
84 super(com.sun.org.apache.bcel.internal.Constants.TABLESWITCH, match, targets, target);
105 out.writeInt(indices[i] = getTargetOffset(targets[i]));
124 targets = new InstructionHandle[match_length];
H A DMethodGen.java718 InstructionHandle[] targets = e.getTargets();
720 for(int i=0; i < targets.length; i++) {
721 InstructionTargeter[] targeters = targets[i].getTargeters();
724 targeters[j].updateTarget(targets[i], next);
891 // explore all of the select's targets. the default target is handled below.
893 InstructionHandle[] targets = select.getTargets();
894 for (int i = 0; i < targets.length; i++)
895 branchTargets.push(targets[i], stackDepth);
H A DInstructionList.java213 /* Pass 2: Look for BranchInstruction and update their targets, i.e.,
229 // If it is a Select instruction, update all branch targets
633 * Any instruction targeters pointing to handles within the block, keep their targets.
740 ih.getInstruction().dispose(); // e.g. BranchInstructions release their targets
897 InstructionHandle[] targets = ((Select)i).getTargets();
899 for(int j=0; j < targets.length; j++) {
900 inst = targets[j].instruction;
945 * the target offset (short or int) and ensure that branch targets are
1095 /* Pass 2: Update branch targets.
1116 for(int j=0; j < itargets.length; j++) { // Update all targets
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DTargetType.java35 * compound attribute) targets.
39 * annotation targets a type argument in a local variable, method return type,
51 // targets. They are included here to confirm that their omission is
225 * Note: wildcard bound targets could target a local tree and a class
236 private static TargetType[] targets = null; field in class:TargetType
239 TargetType[] targets = new TargetType[MAXIMUM_TARGET_TYPE_VALUE + 1];
243 targets[target.targetTypeValue] = target;
246 if (targets[i] == null)
247 targets[i] = UNKNOWN;
249 return targets;
[all...]
/openjdk7/jdk/test/java/nio/channels/DatagramChannel/
H A DUseDGWithIPv6.java36 static String[] targets = { field in class:UseDGWithIPv6
48 for(int i = 0; i < targets.length; i++){
50 SocketAddress sa = new InetSocketAddress(targets[i], port);
/openjdk7/jdk/src/share/classes/java/beans/
H A DPropertyEditorSupport.java281 java.util.Vector targets;
286 targets = (java.util.Vector) listeners.clone();
291 for (int i = 0; i < targets.size(); i++) {
292 PropertyChangeListener target = (PropertyChangeListener)targets.elementAt(i);
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DMode.java688 final InstructionHandle[] targets = new InstructionHandle[types.length];
693 // Initialize targets for namespace() switch statement
695 targets[i] = defaultTarget;
708 targets[type] =
727 il.append(new SWITCH(types, targets, defaultTarget));
902 final InstructionHandle[] targets = new InstructionHandle[types.length];
903 for (int i = DTM.NTYPES; i < targets.length; i++) {
908 targets[i] = attrNamespaceHandle;
910 targets[i] = elemNamespaceHandle;
915 targets[
[all...]
/openjdk7/jdk/make/mksample/webservices/EbayClient/
H A DMakefile50 $(SAMPLE_DST_DIR)/nbproject/file-targets.xml \
53 $(SAMPLE_DST_DIR)/nbproject/netbeans-targets.xml \
/openjdk7/jdk/make/mksample/webservices/EbayServer/
H A DMakefile50 $(SAMPLE_DST_DIR)/nbproject/netbeans-targets.xml \
51 $(SAMPLE_DST_DIR)/nbproject/file-targets.xml \
/openjdk7/jdk/make/mksample/scripting/scriptpad/
H A DMakefile43 $(SAMPLE_DST_DIR)/nbproject/file-targets.xml \
45 $(SAMPLE_DST_DIR)/nbproject/netbeans-targets.xml \
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DVirtualMachineManagerImpl.java46 private List<VirtualMachine> targets = new ArrayList<VirtualMachine>(); field in class:VirtualMachineManagerImpl
210 return Collections.unmodifiableList(targets);
236 targets.add(vm);
245 targets.add(vm);
249 targets.remove(vm);
/openjdk7/jdk/test/sun/jvmstat/monitor/MonitoredVm/
H A DMonitorVmStartTerminate.java87 ArrayList targets; field in class:SleeperListener
93 targets = new ArrayList();
140 targets.add(lvmid);
165 * started the targets (note - duplicated allowed and somewhat
169 if (targets.contains(lvmid)) {
171 targets.remove(lvmid);
/openjdk7/jdk/test/java/nio/file/Files/
H A DLinks.java65 // Test links to various targets
70 String[] targets = (isWindows) ? windowsTargets : otherTargets;
71 for (String s: targets) {
/openjdk7/jdk/test/javax/management/MBeanServer/
H A DMBeanExceptionTest.java128 final String[] targets = {"UncheckedException", "CheckedException"};
132 for (int j = 0; j < targets.length; j++) {
137 String target = targets[j];
/openjdk7/jdk/make/mksample/jmx/jmx-scandir/
H A DMakefile55 $(SAMPLE_DST_DIR)/nbproject/file-targets.xml \
57 $(SAMPLE_DST_DIR)/nbproject/netbeans-targets.xml \
/openjdk7/jdk/src/share/classes/sun/management/snmp/jvminstr/
H A DJVM_MANAGEMENT_MIB_IMPL.java198 * List of notification targets.
278 * Add notification targets.
279 * @param targets A list of
281 * @throws IllegalArgumentException If targets parameter is null.
283 public synchronized void addTargets(List<NotificationTarget> targets) argument
285 if(targets == null)
288 notificationTargets.addAll(targets);
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXSelection.java188 * Returns the list of atoms that represent the targets for which an attempt
196 long[] targets = null;
229 targets = getFormats(targetsGetter);
234 return targets;
605 // First retrieve the list of requested targets.
/openjdk7/jdk/src/share/classes/javax/swing/
H A DGroupLayout.java3206 * targets. The targets and sources are computed during layout. An
3415 private List<ComponentSpring> targets; field in class:GroupLayout.ContainerAutoPreferredGapSpring
3428 if (targets == null) {
3429 targets = new ArrayList<ComponentSpring>(1);
3431 targets.add(spring);
3439 if (targets != null) {
3450 for (int i = targets.size() - 1; i >= 0; i--) {
3451 ComponentSpring targetSpring = targets.get(i);
3505 if (targets !
[all...]
/openjdk7/jdk/src/share/classes/java/util/logging/
H A DLogManager.java1131 Handler[] targets = logger.getHandlers();
1132 for (int i = 0; i < targets.length; i++) {
1133 Handler h = targets[i];
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DSSLSocketImpl.java2489 targets; // who gets notified field in class:SSLSocketImpl.NotifyHandshakeThread
2497 targets = new HashSet<>(entrySet); // clone the entry set
2504 entry : targets) {
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/util/
H A DMethodGenerator.java1380 // MarkerInstructions are not copied, so if something else targets
1564 // Pass 2: Walk old and new instruction lists, updating branch targets
1591 // Update all targets
1718 InstructionHandle[] targets = e.getTargets();
1726 for (int i = 0; i < targets.length; i++) {
1727 InstructionHandle lostTarget = targets[i];
2001 // Instructions that may have 16-bit or 32-bit branch targets.

Completed in 121 milliseconds

12