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

1234567891011>>

/openjdk9/jaxws/src/jdk.xml.bind/share/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();
/openjdk9/jdk/src/java.base/share/classes/java/lang/reflect/
H A DInvocationTargetException.java33 * the general purpose exception-chaining mechanism. The "target exception"
50 * This field holds the target if the
51 * InvocationTargetException(Throwable target) constructor was
57 private Throwable target; field in class:InvocationTargetException
61 * {@code null} as the target exception.
68 * Constructs a InvocationTargetException with a target exception.
70 * @param target the target exception
72 public InvocationTargetException(Throwable target) { argument
74 this.target
84 InvocationTargetException(Throwable target, String s) argument
[all...]
/openjdk9/jdk/src/java.desktop/share/classes/javax/accessibility/
H A DAccessibleRelation.java52 * {@code LABEL_FOR} relation, the target vector would contain a list of
55 * the target vector would contain all of the components that are members of
59 private Object [] target = new Object[0]; field in class:AccessibleRelation
62 * Indicates an object is a label for one or more target objects.
73 * Indicates an object is labeled by one or more target objects.
84 * Indicates an object is a member of a group of one or more target objects.
95 * Indicates an object is a controller for one or more target objects.
106 * Indicates an object is controlled by one or more target objects.
178 * Identifies that the target group for a label has changed.
193 * Identifies that the controller for the target objec
284 AccessibleRelation(String key, Object target) argument
301 AccessibleRelation(String key, Object[] target) argument
341 setTarget(Object target) argument
351 setTarget(Object [] target) argument
[all...]
/openjdk9/jdk/src/java.desktop/windows/classes/sun/awt/windows/
H A DWCheckboxMenuItemPeer.java41 WCheckboxMenuItemPeer(CheckboxMenuItem target) { argument
42 super(target, true);
43 setState(target.getState());
49 final CheckboxMenuItem target = (CheckboxMenuItem)this.target;
50 WToolkit.executeOnEventHandlerThread(target, new Runnable() {
53 target.setState(state);
54 postEvent(new ItemEvent(target, ItemEvent.ITEM_STATE_CHANGED,
55 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).setVisible(false);
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/tiers/
H A DLowTierContext.java31 private final TargetProvider target; field in class:LowTierContext
33 public LowTierContext(Providers copyFrom, TargetProvider target) { argument
35 this.target = target;
39 return target.getTarget();
43 return target;
/openjdk9/jdk/src/java.desktop/macosx/classes/sun/lwawt/macosx/
H A DCMenuComponent.java35 private final MenuComponent target; field in class:CMenuComponent
37 CMenuComponent(final MenuComponent target) { argument
39 this.target = target;
44 return target;
52 LWCToolkit.targetDisposedPeer(target, this);
/openjdk9/test/lib/jdk/test/lib/
H A DInfiniteLoop.java33 private final Runnable target; field in class:InfiniteLoop
38 * @param target a target to run in a loop
40 * @throws NullPointerException if target is null
43 public InfiniteLoop(Runnable target, long mills) { argument
44 Objects.requireNonNull(target);
48 this.target = target;
56 target.run();
/openjdk9/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);
/openjdk9/jdk/src/jdk.internal.opt/share/classes/jdk/internal/joptsimple/internal/
H A DObjects.java69 * @param target reference to check
70 * @throws NullPointerException if {@code target} is {@code null}
72 public static void ensureNotNull( Object target ) {
73 if ( target == null )
/openjdk9/jdk/test/java/lang/ModuleTests/access/src/target/
H A Dmodule-info.java24 module target {
/openjdk9/jdk/src/java.desktop/share/classes/java/awt/
H A DLayoutManager2.java61 * @param target the target container
64 public Dimension maximumLayoutSize(Container target); argument
73 * @param target the target container
76 public float getLayoutAlignmentX(Container target); argument
85 * @param target the target container
88 public float getLayoutAlignmentY(Container target); argument
93 * @param target th
95 invalidateLayout(Container target) argument
[all...]
/openjdk9/hotspot/test/gc/stress/gcbasher/
H A DDependency.java28 private String target; field in class:Dependency
30 public Dependency(String methodName, String methodDescriptor, String target) { argument
33 this.target = target;
43 return target.equals(other.target) &&
50 return methodName.hashCode() ^ methodDescriptor.hashCode() ^ target.hashCode();
/openjdk9/hotspot/test/compiler/aot/jdk.tools.jaotc.test/src/jdk/tools/jaotc/test/
H A DNativeOrderOutputStreamTest.java43 private NativeOrderOutputStream target; field in class:NativeOrderOutputStreamTest
47 target = new NativeOrderOutputStream();
52 target.putInt(5);
53 Assert.assertEquals(4, target.position());
58 target.putLong(8);
59 Assert.assertEquals(8, target.position());
64 target.patchableInt();
65 Assert.assertEquals(4, target.position());
70 NativeOrderOutputStream.PatchableInt patchableInt = target.patchableInt();
72 Assert.assertEquals(4, target
[all...]
/openjdk9/jdk/src/java.desktop/share/classes/javax/swing/plaf/basic/
H A DDefaultMenuLayout.java48 * @param target the container that needs to be laid out
55 public DefaultMenuLayout(Container target, int axis) { argument
56 super(target, axis);
59 public Dimension preferredLayoutSize(Container target) { argument
60 if (target instanceof JPopupMenu) {
61 JPopupMenu popupMenu = (JPopupMenu) target;
69 super.invalidateLayout(target);
71 return super.preferredLayoutSize(target);
/openjdk9/jdk/src/jdk.jlink/share/classes/jdk/tools/jlink/internal/
H A DSymLinkResourcePoolEntry.java35 * as a symbolic link to the target when the target platform supports
37 * path to the target file.
40 private final ResourcePoolEntry target; field in class:SymLinkResourcePoolEntry
48 * @param target Target entry in the image
53 ResourcePoolEntry target) {
55 this.target = Objects.requireNonNull(target);
60 return target.contentLength();
65 return target
50 SymLinkResourcePoolEntry(String module, String path, ResourcePoolEntry.Type type, ResourcePoolEntry target) argument
[all...]
/openjdk9/jdk/test/lib/testlibrary/jdk/testlibrary/
H A DFilterClassLoader.java27 * A classloader, which using target classloader in case provided condition
32 private final ClassLoader target; field in class:FilterClassLoader
35 public FilterClassLoader(ClassLoader target, ClassLoader parent, argument
39 this.target = target;
45 return target.loadClass(name);
H A DTestThread.java62 * @param target The object whose {@code run} method is called
65 public TestThread(Runnable target, String name) { argument
66 super(target, name);
67 this.runnable = target;
73 * @param target The object whose {@code run} method is called
75 public TestThread(Runnable target) { argument
76 super(target);
77 this.runnable = target;
84 * @param target The object whose {@code run} method is called
88 public TestThread(ThreadGroup group, Runnable target, Strin argument
101 TestThread(ThreadGroup group, Runnable target, String name) argument
112 TestThread(ThreadGroup group, Runnable target) argument
[all...]
/openjdk9/jdk/src/java.desktop/share/classes/sun/awt/
H A DComponentFactory.java54 * @param target The Component to be created
57 default LightweightPeer createComponent(Component target) { argument
65 * @param target the desktop to be implemented
74 default DesktopPeer createDesktopPeer(Desktop target) { argument
82 * @param target the taskbar to be implemented
91 default TaskbarPeer createTaskbarPeer(Taskbar target) { argument
99 * @param target the button to be implemented
107 default ButtonPeer createButton(Button target) { argument
115 * @param target the text field to be implemented
123 default TextFieldPeer createTextField(TextField target) { argument
139 createLabel(Label target) argument
155 createList(java.awt.List target) argument
171 createCheckbox(Checkbox target) argument
187 createScrollbar(Scrollbar target) argument
204 createScrollPane(ScrollPane target) argument
220 createTextArea(TextArea target) argument
236 createChoice(Choice target) argument
252 createFrame(Frame target) argument
265 createCanvas(Canvas target) argument
278 createPanel(Panel target) argument
294 createWindow(Window target) argument
310 createDialog(Dialog target) argument
326 createMenuBar(MenuBar target) argument
342 createMenu(Menu target) argument
359 createPopupMenu(PopupMenu target) argument
375 createMenuItem(MenuItem target) argument
391 createFileDialog(FileDialog target) argument
407 createCheckboxMenuItem(CheckboxMenuItem target) argument
440 createRobot(Robot target, GraphicsDevice screen) argument
[all...]
/openjdk9/hotspot/src/jdk.hotspot.agent/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);
/openjdk9/jdk/src/java.desktop/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);
/openjdk9/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) {
/openjdk9/jdk/test/java/nio/file/Files/
H A DCopyAndMove.java160 // move source to target with verification
161 static void moveAndVerify(Path source, Path target, CopyOption... options) argument
185 // record link target if symbolic link
198 Path result = move(source, target, options);
199 assertTrue(result == target);
206 if (computeHash(target) != hash)
210 // verify link target
212 if (!readSymbolicLink(target).equals(linkTarget))
218 readAttributes(target, BasicFileAttributes.class, NOFOLLOW_LINKS));
221 if (source.getFileSystem().provider() == target
617 copyAndVerify(Path source, Path target, CopyOption... options) argument
[all...]
/openjdk9/jdk/test/java/util/PluggableLocale/providersrc/
H A DLocaleNameProviderImpl.java48 public String getDisplayLanguage(String lang, Locale target) { argument
49 return getDisplayString(lang, target);
53 public String getDisplayCountry(String ctry, Locale target) { argument
54 return getDisplayString(ctry, target);
58 public String getDisplayVariant(String vrnt, Locale target) { argument
59 return getDisplayString(vrnt, target);
62 private String getDisplayString(String key, Locale target) { argument
63 if (!Utils.supportsLocale(availList, target)) {
64 throw new IllegalArgumentException("locale is not supported: "+target);
69 if (target
[all...]

Completed in 218 milliseconds

1234567891011>>