Searched defs:target (Results 1 - 25 of 670) sorted by relevance

1234567891011>>

/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/macosx/classes/sun/lwawt/
H A DLWPanelPeer.java38 LWPanelPeer(final Panel target, final PlatformComponent platformComponent) { argument
39 super(target, platformComponent);
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkIntrinsics.hpp36 static bool is_intrinsic(ciMethod* target);
37 static void inline_intrinsic(ciMethod* target, SharkState* state);
40 SharkIntrinsics(SharkState* state, ciMethod* target) argument
41 : SharkTargetInvariants(state, target), _state(state) {}
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
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();
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)
/openjdk7/jdk/test/java/beans/Statement/
H A DTest4653179.java60 private static Object testInt(Object target, String name, Object... args) throws Exception { argument
61 return new Expression(target, name, args).getValue();
64 private static Object testNew(Object target, String name, Object... args) throws Exception { argument
65 return testInt(target, new String(name), args); // non-intern string
/openjdk7/jdk/test/java/lang/instrument/
H A DASimpleInstrumentationTestCase.java55 assertClassArrayContainsClass(Class[] list, Class target) argument
60 if ( list[x] == target )
/openjdk7/jdk/test/java/util/PluggableLocale/
H A DProviderTest.java33 void checkValidity(Locale target, Object jres, Object providers, Object result, boolean jresPreferred) { argument
37 "result do not match with jre's result. target: "+target+" result: "+result+" jre's: "+jres);
42 "result do not match with provider's result. target: "+target+" result: "+result+" providers: "+providers);
/openjdk7/langtools/test/tools/javac/generics/
H A DMultipleInheritance.java43 public <T> T[] toArray(T[] target); argument
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DGotoInstruction.java69 GotoInstruction(short opcode, InstructionHandle target) { argument
70 super(opcode, target);
/openjdk7/corba/src/share/classes/javax/rmi/CORBA/
H A DTie.java50 * Returns an object reference for the target object represented by
52 * @return an object reference for the target object.
57 * Deactivates the target object represented by this tie.
74 * Called by {@link Util#registerTarget} to set the target
76 * @param target the object to use as the target for this tie.
78 void setTarget(java.rmi.Remote target); argument
81 * Returns the target for this tie.
82 * @return the target.
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DLivenessAnalysis.java47 public static LivenessPathList computeAllLivenessPaths(Oop target) { argument
48 LivenessPathList list = computeAllLivenessPaths(target, true);
67 // returned. On the other hand, if the target object itself is
71 private static LivenessPathList computeAllLivenessPaths(Oop target, boolean trimPathsThroughPopularObjects) { argument
79 if (rev.get(target) == null) {
93 visitedOops.add(target);
99 path.push(new LivenessPathElement(target, null));
/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/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/src/share/classes/java/lang/invoke/
H A DVolatileCallSite.java29 * A {@code VolatileCallSite} is a {@link CallSite} whose target acts like a volatile variable.
31 * to its call site target immediately, even if the update occurs in another thread.
46 * Creates a call site with a volatile binding to its target.
47 * The initial target is set to a method handle
57 * Creates a call site with a volatile binding to its target.
58 * The target is set to the given value.
59 * @param target the method handle that will be the initial target of the call site
60 * @throws NullPointerException if the proposed target is null
62 public VolatileCallSite(MethodHandle target) { argument
[all...]
/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/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/jdk/src/share/classes/java/text/
H A DCollationKey.java102 * Compare this CollationKey to the target CollationKey. The collation rules of the
105 * @param target target CollationKey
107 * than target, value is zero if this and target are equal and value is greater than
108 * zero if this is greater than target.
111 abstract public int compareTo(CollationKey target); argument
H A DRuleBasedCollationKey.java48 * Compare this RuleBasedCollationKey to target. The collation rules of the
51 * @param target target RuleBasedCollationKey
53 * than target, value is zero if this and target are equal and value is greater than
54 * zero if this is greater than target.
57 public int compareTo(CollationKey target) argument
59 int result = key.compareTo(((RuleBasedCollationKey)(target)).key);
68 * Compare this RuleBasedCollationKey and the target for equality.
72 * @param target th
75 equals(Object target) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/naming/event/
H A DEventDirContext.java49 * and target, and information about listener registration/deregistration
68 * the object named by target are modified.
79 * @param target The nonnull name of the object resolved relative to this context.
89 void addNamingListener(Name target, String filter, SearchControls ctls, argument
95 * object named by the string target name are modified.
99 * @param target The nonnull string name of the object resolved relative to this context.
109 void addNamingListener(String target, String filter, SearchControls ctls, argument
115 * filter arguments at the object named by the target are modified.
125 * @param target The nonnull name of the object resolved relative to this context.
136 void addNamingListener(Name target, Strin argument
157 addNamingListener(String target, String filter, Object[] filterArgs, SearchControls ctls, NamingListener l) argument
[all...]
/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/hotspot/test/gc/6581734/
H A DTest6581734.java129 public void allocationWork(long target) { argument
136 while (sizeAllocated < target) {
/openjdk7/jdk/src/macosx/native/sun/java2d/opengl/
H A DCGLLayer.h38 GLenum target; variable
50 @property (readwrite, assign) GLenum target; variable
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/outline/
H A DEnumConstantOutline.java44 public final CEnumConstant target; field in class:EnumConstantOutline
54 protected EnumConstantOutline(CEnumConstant target, JEnumConstant constRef) { argument
55 this.target = target;
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_MenuItem.h37 jfieldID target; member in struct:MMenuItemPeerIDs

Completed in 74 milliseconds

1234567891011>>