Searched refs:target (Results 1 - 25 of 985) sorted by relevance

1234567891011>>

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/digested/
H A DDRefPattern.java52 private final DDefine target; field in class:DRefPattern
54 public DRefPattern(DDefine target) { argument
55 this.target = target;
59 return target.isNullable();
66 return target;
70 * Gets the name of the target.
73 return target.getName();
/openjdk7/jdk/src/share/classes/java/lang/reflect/
H A DInvocationTargetException.java33 * the general purpose exception-chaining mechanism. The "target exception"
49 * This field holds the target if the
50 * InvocationTargetException(Throwable target) constructor was
56 private Throwable target; field in class:InvocationTargetException
60 * {@code null} as the target exception.
67 * Constructs a InvocationTargetException with a target exception.
69 * @param target the target exception
71 public InvocationTargetException(Throwable target) { argument
73 this.target
83 InvocationTargetException(Throwable target, String s) argument
[all...]
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWCheckboxMenuItemPeer.java39 WCheckboxMenuItemPeer(CheckboxMenuItem target) { argument
40 super(target, true);
41 setState(target.getState());
47 final CheckboxMenuItem target = (CheckboxMenuItem)this.target;
48 WToolkit.executeOnEventHandlerThread(target, new Runnable() {
50 target.setState(state);
51 postEvent(new ItemEvent(target, ItemEvent.ITEM_STATE_CHANGED,
52 target.getLabel(), (state)
H A DWPageDialogPeer.java30 WPageDialogPeer(WPageDialog target) { argument
31 super(target);
36 * settings into target's 'page'.
46 ((WPrintDialog)target).setRetVal(_show());
52 ((WPrintDialog)target).hide();
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkInliner.hpp36 static bool attempt_inline(ciMethod* target, SharkState* state);
39 static bool may_be_inlinable(ciMethod* target);
/openjdk7/jdk/src/solaris/sample/dtrace/hotspot/
H A Dhotspot_calls_tree.d71 hotspot$target:::class-loaded,
72 hotspot$target:::class-unloaded,
73 hotspot$target:::compiled-method-load,
74 hotspot$target:::compiled-method-unload,
75 hotspot$target:::monitor-notify,
76 hotspot$target:::monitor-notifyAll
81 hotspot$target:::vm-init-begin,
82 hotspot$target:::gc-begin,
83 hotspot$target:::mem-pool-gc-begin,
84 hotspot$target
[all...]
/openjdk7/langtools/test/tools/javac/versions/
H A Dcheck.sh26 # @summary Check interpretation of -target and -source options
52 check 49.0 -source 1.4 -target 1.5
53 check 49.0 -source 1.5 -target 1.5
55 check 50.0 -source 1.4 -target 1.6
56 check 50.0 -source 1.5 -target 1.6
57 check 50.0 -source 1.6 -target 1.6
58 check 50.0 -source 1.6 -target 6
59 check 50.0 -source 6 -target 1.6
60 check 50.0 -source 6 -target 6
68 check 51.0 -target 1.
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/
H A DComponentFactory.java38 CanvasPeer createCanvas(Canvas target) throws HeadlessException; argument
40 PanelPeer createPanel(Panel target) throws HeadlessException; argument
42 WindowPeer createWindow(Window target) throws HeadlessException; argument
44 FramePeer createFrame(Frame target) throws HeadlessException; argument
46 DialogPeer createDialog(Dialog target) throws HeadlessException; argument
48 ButtonPeer createButton(Button target) throws HeadlessException; argument
50 TextFieldPeer createTextField(TextField target) argument
53 ChoicePeer createChoice(Choice target) throws HeadlessException; argument
55 LabelPeer createLabel(Label target) throws HeadlessException; argument
57 ListPeer createList(List target) throw argument
59 createCheckbox(Checkbox target) argument
62 createScrollbar(Scrollbar target) argument
65 createScrollPane(ScrollPane target) argument
68 createTextArea(TextArea target) argument
71 createFileDialog(FileDialog target) argument
74 createMenuBar(MenuBar target) argument
76 createMenu(Menu target) argument
78 createPopupMenu(PopupMenu target) argument
81 createMenuItem(MenuItem target) argument
84 createCheckboxMenuItem(CheckboxMenuItem target) argument
93 createRobot(Robot target, GraphicsDevice screen) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/accessibility/
H A DAccessibleRelation.java55 * example, in the case of a LABEL_FOR relation, the target
58 * MEMBER_OF relation, the target vector would contain all
62 private Object [] target = new Object[0]; field in class:AccessibleRelation
65 * Indicates an object is a label for one or more target objects.
76 * Indicates an object is labeled by one or more target objects.
88 * target objects.
99 * Indicates an object is a controller for one or more target
111 * Indicates an object is controlled by one or more target
194 * Identifies that the target group for a label has changed
209 * Identifies that the controller for the target objec
299 AccessibleRelation(String key, Object target) argument
315 AccessibleRelation(String key, Object [] target) argument
356 setTarget(Object target) argument
366 setTarget(Object [] target) argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DLayoutManager2.java61 public Dimension maximumLayoutSize(Container target); argument
70 public float getLayoutAlignmentX(Container target); argument
79 public float getLayoutAlignmentY(Container target); argument
85 public void invalidateLayout(Container target); argument
/openjdk7/hotspot/test/compiler/6990212/
H A DTest6990212.java28 * @summary JSR 292 JVMTI MethodEnter hook is not called for JSR 292 bootstrap and target methods
36 public Object target(); method in interface:intf
40 public Object target() { method in class:Test6990212
48 MethodHandle target = MethodHandles.lookup().findVirtual(intf.class, "target", MethodType.methodType(Object.class));
50 target.invoke(new Object());
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DDefaultMenuLayout.java44 public DefaultMenuLayout(Container target, int axis) { argument
45 super(target, axis);
48 public Dimension preferredLayoutSize(Container target) { argument
49 if (target instanceof JPopupMenu) {
50 JPopupMenu popupMenu = (JPopupMenu) target;
58 super.invalidateLayout(target);
60 return super.preferredLayoutSize(target);
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCMenuComponent.java34 private MenuComponent target; field in class:CMenuComponent
37 CMenuComponent(MenuComponent target) { argument
38 this.target = target;
43 return target;
53 LWCToolkit.targetDisposedPeer(target, this);
55 target = null;
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/daemon/
H A DCommunicationException.java47 * Constructs a CommunicationException with a target exception.
49 public CommunicationException(Throwable target) { argument
50 super(target.getMessage());
51 initCause(target);
55 * Constructs a CommunicationException with a target exception
58 public CommunicationException(Throwable target, String msg) { argument
60 initCause(target);
71 * Get the thrown target exception.
/openjdk7/jdk/src/share/classes/sun/management/snmp/jvminstr/
H A DNotificationTargetImpl.java40 * target synctax is <host>:<port>:community. Eg: "localhost:163:private".
44 * @throws IllegalArgumentException In case the target is malformed
46 public NotificationTargetImpl(String target) argument
48 parseTarget(target);
64 private void parseTarget(String target) argument
67 if(target == null ||
68 target.length() == 0) throw new
69 IllegalArgumentException("Invalid target [" + target + "]");
72 if (target
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/soql/
H A DInvocableCallable.java31 * function of given name when called. If the target
36 private Object target; field in class:InvocableCallable
40 public InvocableCallable(Object target, String name, argument
42 this.target = target;
49 if (target == null) {
52 return invocable.invokeMethod(target, name, args);
H A DMethodCallable.java35 private Object target; field in class:MethodCallable
43 public MethodCallable(Object target, Method method, boolean wrapArgs) { argument
45 this.target = target;
49 public MethodCallable(Object target, Method method) { argument
50 this(target, method, true);
56 return method.invoke(target, new Object[] { args });
58 return method.invoke(target, args);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthMenuLayout.java40 public SynthMenuLayout(Container target, int axis) { argument
41 super(target, axis);
44 public Dimension preferredLayoutSize(Container target) { argument
45 if (target instanceof JPopupMenu) {
46 JPopupMenu popupMenu = (JPopupMenu) target;
51 return super.preferredLayoutSize(target);
/openjdk7/jdk/test/java/lang/Thread/
H A DHoldsLock.java32 private static Object target = null; field in class:HoldsLock
35 if (Thread.holdsLock(target) != value)
42 synchronized(target) {
58 target = new Object();
60 synchronized(target) {
66 synchronized(target) {
/openjdk7/jdk/test/java/nio/file/Files/
H A DCopyAndMove.java144 // move source to target with verification
145 static void moveAndVerify(Path source, Path target, CopyOption... options) argument
169 // record link target if symbolic link
182 Path result = move(source, target, options);
183 assertTrue(result == target);
190 if (computeHash(target) != hash)
194 // verify link target
196 if (!readSymbolicLink(target).equals(linkTarget))
202 readAttributes(target, BasicFileAttributes.class, NOFOLLOW_LINKS));
205 if (source.getFileSystem().provider() == target
598 copyAndVerify(Path source, Path target, CopyOption... options) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DGotoInstruction.java69 GotoInstruction(short opcode, InstructionHandle target) { argument
70 super(opcode, target);
H A DIfInstruction.java76 protected IfInstruction(short opcode, InstructionHandle target) { argument
77 super(opcode, target);
H A DBranchInstruction.java73 protected int index; // Branch target relative to this instruction
74 protected InstructionHandle target; // Target object in instruction list field in class:BranchInstruction
85 * @param target instruction to branch to
87 protected BranchInstruction(short opcode, InstructionHandle target) { argument
89 setTarget(target);
103 throw new ClassGenException("Branch target offset too large for short");
109 * @param target branch target
110 * @return the offset to `target' relative to this instruction
112 protected int getTargetOffset(InstructionHandle target) { argument
210 setTarget(InstructionHandle target) argument
[all...]
/openjdk7/jdk/src/share/classes/java/nio/file/
H A DAtomicMoveNotSupportedException.java45 * @param target
46 * a string identifying the target file or {@code null} if not known
51 String target,
54 super(source, target, reason);
50 AtomicMoveNotSupportedException(String source, String target, String reason) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/outline/
H A DElementOutline.java59 public final CElementInfo target; field in class:ElementOutline
68 protected ElementOutline(CElementInfo target, JDefinedClass implClass) { argument
69 this.target = target;

Completed in 122 milliseconds

1234567891011>>