Searched refs:target (Results 101 - 125 of 985) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/java/beans/
H A DExpression.java30 * in which a single method is applied to a target and a set of
55 * for the specified target object to invoke the method
58 * The {@code target} and the {@code methodName} values should not be {@code null}.
64 * @param target the target object of this expression
65 * @param methodName the name of the method to invoke on the specified target
70 @ConstructorProperties({"target", "methodName", "arguments"})
71 public Expression(Object target, String methodName, Object[] arguments) { argument
72 super(target, methodName, arguments);
77 * for the specified target objec
96 Expression(Object value, Object target, String methodName, Object[] arguments) argument
[all...]
H A DStatement.java44 * in which a single method is applied to a target and
47 * to denote the target and its argument, a statement
52 * the target and an array of argument values.
71 private final Object target; field in class:Statement
78 * for the specified target object to invoke the method
81 * The {@code target} and the {@code methodName} values should not be {@code null}.
87 * @param target the target object of this statement
88 * @param methodName the name of the method to invoke on the specified target
91 @ConstructorProperties({"target", "methodNam
92 Statement(Object target, String methodName, Object[] arguments) 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...]
H A DEventContext.java39 * to as the <em>target</em>. The target, along with the scope, identify
41 * It is possible to register interest in a target that does not exist, but
46 * targets, an attempt to register for a nonexistent target
53 * targets, when the target that a listener has registered for is
66 * The source is <em>not necessarily</em> the object named by the target.
67 * Only when the target is the empty name is the object named by the target
69 * In other words, the target,
139 * by the target
200 addNamingListener(Name target, int scope, NamingListener l) argument
218 addNamingListener(String target, int scope, NamingListener l) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/dir/
H A DContainmentFilter.java64 Attribute target = (Attribute) m.next();
65 Attribute fromSuper = superset.get(target.getID());
70 if (target.size() > 0) {
71 NamingEnumeration vals = target.getAll();
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkInvariants.cpp31 if (is_synchronized() || target()->has_monitor_bytecodes()) {
H A DsharkInvariants.hpp127 SharkTargetInvariants(const SharkCompileInvariants* parent, ciMethod* target) argument
129 _target(target),
149 ciMethod* target() const { function in class:SharkTargetInvariants
163 return target()->max_locals();
166 return target()->max_stack();
172 return target()->arg_size();
175 return target()->is_static();
178 return target()->is_synchronized();
/openjdk7/jaxp/src/org/w3c/dom/html/
H A DHTMLBaseElement.java56 * The default target frame. See the target attribute definition in HTML
60 public void setTarget(String target); argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/outline/
H A DEnumOutline.java48 public final CEnumLeafInfo target; field in class:EnumOutline
73 protected EnumOutline(CEnumLeafInfo target, JDefinedClass clazz) { argument
74 this.target = target;
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_MenuItem.h37 jfieldID target; member in struct:MMenuItemPeerIDs
H A Dawt_MToolkit.h34 extern Boolean isFrameOrDialog(jobject target, JNIEnv * env);
35 extern jobject getOwningFrameOrDialog(jobject target, JNIEnv *env);
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWEmbeddedFramePeer.java37 public WEmbeddedFramePeer(EmbeddedFrame target) { argument
38 super(target);
53 ((EmbeddedFrame)target).notifyModalBlocked(blocker, true);
59 ((EmbeddedFrame)target).notifyModalBlocked(blocker, false);
H A DWFramePeer.java60 // sync target and peer
62 AWTAccessor.getFrameAccessor().setExtendedState((Frame)target, state);
65 return AWTAccessor.getFrameAccessor().getExtendedState((Frame)target);
127 getMaximizedBounds((Frame)target);
136 return ((Frame)target).isUndecorated();
140 if (((Frame)target).isUndecorated()) {
149 if (!((Frame)target).isUndecorated()) {
152 if (((Frame)target).getMenuBar() != null) {
174 WFramePeer(Frame target) { argument
175 super(target);
[all...]
H A DWMenuPeer.java44 WMenuPeer(Menu target) { argument
45 this.target = target;
46 MenuContainer parent = target.getParent();
H A DWLabelPeer.java35 FontMetrics fm = getFontMetrics(((Label)target).getFont());
36 String label = ((Label)target).getText();
59 WLabelPeer(Label target) { argument
60 super(target);
66 Label l = (Label)target;
78 Color bg = ((Component)target).getBackground();
H A DWTextFieldPeer.java39 FontMetrics fm = getFontMetrics(((TextField)target).getFont());
48 postEvent(new ActionEvent(target, ActionEvent.ACTION_PERFORMED,
70 FontMetrics fm = getFontMetrics(((TextField)target).getFont());
82 WTextFieldPeer(TextField target) { argument
83 super(target);
89 TextField tf = (TextField)target;
/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
H A DTest6224433.java37 Class target = Test6224433.class;
40 if (null != new Expression(target, method, params).getValue())
/openjdk7/jdk/test/java/lang/instrument/
H A DRedefineMethodAddInvokeApp.java37 RedefineMethodAddInvokeTarget target =
41 target.test(0); // invoke the original myMethod()
47 target.test(1); // invoke myMethod1()
53 target.test(2); // invoke myMethod2()
/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djinclude.h65 #define MEMZERO(target,size) bzero((void *)(target), (size_t)(size))
71 #define MEMZERO(target,size) memset((void *)(target), 0, (size_t)(size))
/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DLWPanelPeer.java38 LWPanelPeer(final Panel target, final PlatformComponent platformComponent) { argument
39 super(target, platformComponent);
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCMenu.java34 public CMenu(Menu target) { argument
35 super(target);
40 protected void initialize(MenuItem target) { argument
41 setLabel(target.getLabel());
42 setEnabled(target.isEnabled());
48 final Menu target = (Menu) getTarget();
49 final int count = target.getItemCount();
51 MenuItem item = target.getItem(i);
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsFileCopy.java45 * Copy file from source to target
48 final WindowsPath target,
84 target.checkWrite();
88 // attempt to get attributes of target file
90 // if target exists and !replace then throw exception
109 // open target (don't follow links)
112 targetHandle = target.openForReadAttributeAccess(false);
124 target.getPathForExceptionMessage());
144 final String targetPath = asWin32Path(target);
146 // if target exist
47 copy(final WindowsPath source, final WindowsPath target, CopyOption... options) argument
258 move(WindowsPath source, WindowsPath target, CopyOption... options) argument
476 copySecurityAttributes(WindowsPath source, WindowsPath target, boolean followLinks) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/protocol/giopmsgheaders/
H A DLocateRequestMessage_1_2.java46 private TargetAddress target = null; field in class:LocateRequestMessage_1_2
59 target = _target;
71 this.objectKey = MessageBase.extractObjectKey(target, orb);
82 this.target = TargetAddressHelper.read(istream);
89 nullCheck(this.target);
90 TargetAddressHelper.write(ostream, this.target);
/openjdk7/jdk/src/share/classes/javax/naming/
H A DBinaryRefAddr.java125 BinaryRefAddr target = (BinaryRefAddr)obj;
126 if (addrType.compareTo(target.addrType) == 0) {
127 if (buf == null && target.buf == null)
129 if (buf == null || target.buf == null ||
130 buf.length != target.buf.length)
133 if (buf[i] != target.buf[i])

Completed in 45 milliseconds

1234567891011>>