Searched defs:target (Results 51 - 75 of 670) sorted by relevance

1234567891011>>

/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DJSR.java74 public JSR(InstructionHandle target) { argument
75 super(com.sun.org.apache.bcel.internal.Constants.JSR, target);
H A DJSR_W.java75 public JSR_W(InstructionHandle target) { argument
76 super(com.sun.org.apache.bcel.internal.Constants.JSR_W, target);
H A DJsrInstruction.java69 JsrInstruction(short opcode, InstructionHandle target) { argument
70 super(opcode, target);
97 InstructionHandle ih = this.target;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xs/
H A DXSAnnotation.java43 * specified <code>target</code> is a DOM object, in-scope namespace
48 * @param target A target pointer to the annotation target object, i.e.
51 * @param targetType A target type.
52 * @return True if the <code>target</code> is a recognized type and
55 public boolean writeAnnotation(Object target, argument
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/functions/
H A DFuncSystemProperty.java166 * @param target The target property bag the file will be placed into.
168 public void loadPropertyFile(String file, Properties target) argument
179 target.load(bis); // and load up the property bag from this
/openjdk7/corba/src/share/classes/javax/rmi/CORBA/
H A DPortableRemoteObjectDelegate.java81 void connect (Remote target, Remote source) argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DVMVersionMismatchException.java30 public VMVersionMismatchException(String supported, String target) { argument
33 targetVersion = target;
/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/sun/awt/
H A DHorizBagLayout.java72 * contained in the specified target container.
73 * @param target the Container on which to do the layout
77 public Dimension minimumLayoutSize(Container target) { argument
80 for (int i = 0; i < target.countComponents(); i++) {
81 Component comp = target.getComponent(i);
89 Insets insets = target.insets();
98 * in the specified target container.
99 * @param target the component which needs to be laid out
103 public Dimension preferredLayoutSize(Container target) { argument
106 for (int i = 0; i < target
129 layoutContainer(Container target) argument
[all...]
H A DPaintEventDispatcher.java77 public PaintEvent createPaintEvent(Component target, int x, int y, int w, argument
80 return new PaintEvent((Component)target, PaintEvent.PAINT,
H A DVerticalBagLayout.java73 * contained in the specified target container.
74 * @param target the Container on which to do the layout
78 public Dimension minimumLayoutSize(Container target) { argument
80 int nmembers = target.countComponents();
83 Component comp = target.getComponent(i);
91 Insets insets = target.insets();
100 * in the specified target container.
101 * @param target the component which needs to be laid out
105 public Dimension preferredLayoutSize(Container target) { argument
107 int nmembers = target
132 layoutContainer(Container target) argument
[all...]
/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...]
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DConstantCallSite.java29 * A {@code ConstantCallSite} is a {@link CallSite} whose target is permanent, and can never be changed.
31 * bound to the call site's target.
38 * Creates a call site with a permanent target.
39 * @param target the target to be permanently associated with this call site
40 * @throws NullPointerException if the proposed target is null
42 public ConstantCallSite(MethodHandle target) { argument
43 super(target);
48 * Creates a call site with a permanent target, possibly bound to the call site itself.
51 * produce the actual target, a
[all...]
H A DMutableCallSite.java31 * A {@code MutableCallSite} is a {@link CallSite} whose target variable
34 * all calls to the site's current target.
36 * also delegates each call to the site's current target.
68 * <em>Non-synchronization of target values:</em>
69 * A write to a mutable call site's target does not force other threads
72 * may cache the old target value and delay their use of the new target
78 * to accept a new target value, even if there is no other synchronization.
80 * For target values which will be frequently updated, consider using
87 * The initial target i
109 MutableCallSite(MethodHandle target) argument
[all...]
H A DSwitchPoint.java46 * Each pair consists of a target {@code T} and a fallback {@code F}.
97 MethodHandle target, MethodHandle fallback) {
100 return MethodHandles.guardWithTest(this.mcsInvoker, target, fallback);
156 * Returns a method handle which always delegates either to the target or the fallback.
157 * The method handle will delegate to the target exactly as long as the switch point is valid.
160 * The target and fallback must be of exactly the same method type,
163 * @param target the method handle selected by the switch point as long as it is valid
165 * @return a combined method handle which always calls either the target or fallback
170 public MethodHandle guardWithTest(MethodHandle target, MethodHandle fallback) { argument
173 return MethodHandles.guardWithTest(mcsInvoker, target, fallbac
[all...]
/openjdk7/jdk/src/share/classes/java/nio/file/
H A DCopyMoveHelper.java33 * Helper class to support copying or moving files when the source and target
97 * Simple copy for use when source and target are associated with different
100 static void copyToForeignTarget(Path source, Path target, argument
115 // delete target if it exists and REPLACE_EXISTING is specified
117 Files.deleteIfExists(target);
118 } else if (Files.exists(target))
119 throw new FileAlreadyExistsException(target.toString());
123 Files.createDirectory(target);
126 Files.copy(in, target);
130 // copy basic attributes to target
154 moveToForeignTarget(Path source, Path target, CopyOption... options) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/naming/event/
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/hotspot/src/share/vm/opto/
H A Dc2compiler.cpp120 ciMethod* target,
130 Compile C(env, this, target, entry_bci, subsume_loads, do_escape_analysis);
119 compile_method(ciEnv* env, ciMethod* target, int entry_bci) argument
/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/jdk/src/macosx/classes/sun/lwawt/
H A DLWButtonPeer.java39 LWButtonPeer(final Button target, argument
41 super(target, platformComponent);
H A DLWLabelPeer.java47 LWLabelPeer(final Label target, final PlatformComponent platformComponent) { argument
48 super(target, platformComponent);
/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;
H A DCPopupMenu.java34 CPopupMenu(PopupMenu target) { argument
35 super(target);
48 Component origin = (Component)e.target;
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/model/
H A DCategory.java36 public Category(Clazz fromClass, Clazz target) { argument
37 this.category = new Clazz(fromClass.name + "Category", fromClass.classMethods, fromClass.instanceMethods, target, fromClass.parent);

Completed in 73 milliseconds

1234567891011>>