Searched defs:targets (Results 1 - 13 of 13) sorted by relevance

/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/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 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 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 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...]
/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/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/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/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/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/sun/security/tools/policytool/
H A DPolicyTool.java2516 // standard permission with no targets
2519 // standard permission with standard targets
3724 String[] targets, String[] actions) {
3728 this.TARGETS = targets;
3723 Perm(String clazz, String fullClass, String[] targets, String[] actions) argument

Completed in 227 milliseconds