Searched defs:target (Results 126 - 150 of 670) sorted by relevance

1234567891011>>

/openjdk7/langtools/src/share/classes/com/sun/source/util/
H A DTreePath.java43 public static TreePath getPath(CompilationUnitTree unit, Tree target) { argument
44 return getPath(new TreePath(unit), target);
51 public static TreePath getPath(TreePath path, Tree target) { argument
53 target.getClass();
63 public TreePath scan(Tree tree, Tree target) {
64 if (tree == target)
65 throw new Result(new TreePath(getCurrentPath(), target));
66 return super.scan(tree, target);
71 new PathFinder().scan(path, target);
/openjdk7/jdk/test/sun/net/idn/
H A DNFS4StringPrep.java121 private static final int findStringIndex(String[] sortedArr,String target){ argument
130 rc= sortedArr[middle].compareTo(target);
/openjdk7/jdk/src/share/classes/sun/java2d/loops/
H A DDrawGlyphListLCD.java97 DrawGlyphListLCD target; field in class:DrawGlyphListLCD.TraceDrawGlyphListLCD
99 public TraceDrawGlyphListLCD(DrawGlyphListLCD target) { argument
100 super(target.getSourceType(),
101 target.getCompositeType(),
102 target.getDestType());
103 this.target = target;
113 tracePrimitive(target);
114 target.DrawGlyphListLCD(sg2d, dest, glyphs);
H A DDrawPath.java93 DrawPath target; field in class:DrawPath.TraceDrawPath
95 public TraceDrawPath(DrawPath target) { argument
96 super(target.getSourceType(),
97 target.getCompositeType(),
98 target.getDestType());
99 this.target = target;
110 tracePrimitive(target);
111 target.DrawPath(sg2d, sData, transX, transY, p2df);
H A DFillPath.java93 FillPath target; field in class:FillPath.TraceFillPath
95 public TraceFillPath(FillPath target) { argument
96 super(target.getSourceType(),
97 target.getCompositeType(),
98 target.getDestType());
99 this.target = target;
110 tracePrimitive(target);
111 target.FillPath(sg2d, sData, transX, transY, p2df);
H A DFillSpans.java102 FillSpans target; field in class:FillSpans.TraceFillSpans
104 public TraceFillSpans(FillSpans target) { argument
105 super(target.getSourceType(),
106 target.getCompositeType(),
107 target.getDestType());
108 this.target = target;
118 tracePrimitive(target);
119 target.FillSpans(sg2d, dest, si);
/openjdk7/jdk/src/share/classes/sun/rmi/transport/
H A DTransport.java90 public void exportObject(Target target) throws RemoteException { argument
91 target.setExportedTransport(this);
92 ObjectTable.putTarget(target);
149 Target target =
152 if (target == null || (impl = target.getImpl()) == null) {
156 final Dispatcher disp = target.getDispatcher();
157 target.incrementCallCount();
163 target.getAccessControlContext();
164 ClassLoader ccl = target
[all...]
/openjdk7/jdk/src/share/sample/nio/file/
H A DCopy.java63 * Copy source file to target location. If {@code prompt} is true then
64 * prompt user to overwrite target if it exists. The {@code preserve}
67 static void copyFile(Path source, Path target, boolean prompt, boolean preserve) { argument
71 if (!prompt || Files.notExists(target) || okayToOverwrite(target)) {
73 Files.copy(source, target, options);
85 private final Path target; field in class:Copy.TreeCopier
89 TreeCopier(Path source, Path target, boolean prompt, boolean preserve) { argument
91 this.target = target;
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DSWITCH.java86 * @param target the default target
90 InstructionHandle target, int max_gap) {
95 instruction = new TABLESWITCH(match, targets, target);
100 fillup(max_gap, target);
102 instruction = new TABLESWITCH(this.match, this.targets, target);
105 instruction = new LOOKUPSWITCH(this.match, this.targets, target);
110 InstructionHandle target) {
111 this(match, targets, target, 1);
114 private final void fillup(int max_gap, InstructionHandle target) { argument
89 SWITCH(int[] match, InstructionHandle[] targets, InstructionHandle target, int max_gap) argument
109 SWITCH(int[] match, InstructionHandle[] targets, InstructionHandle target) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DXSAnnotationImpl.java63 * specified <code>target</code> object is a DOM in-scope namespace
68 * @param target A target pointer to the annotation target object, i.e.
71 * @param targetType A target type.
72 * @return If the <code>target</code> is recognized type and supported by
75 public boolean writeAnnotation(Object target, argument
78 writeToDOM((Node)target, targetType);
81 writeToSAX((ContentHandler)target);
113 * The [target namespac
153 writeToDOM(Node target, short type) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serialize/
H A DTextSerializer.java176 public void processingInstructionIO( String target, String code ) throws IOException argument
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/presentation/rmi/
H A DReflectiveTie.java57 private Remote target = null ; field in class:ReflectiveTie
78 public void setTarget(Remote target) argument
80 this.target = target;
82 if (target == null) {
85 Class targetClass = target.getClass() ;
92 return target;
139 target.getClass().getName() ) ;
145 Object result = javaMethod.invoke( target, args ) ;
/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/corba/src/share/classes/javax/rmi/
H A DPortableRemoteObject.java110 * of PortableRemoteObject or have been previously the target of a call to
165 * @param target the object to connect.
168 * or if <code>target</code> is already connected to a different ORB than
171 public static void connect (Remote target, Remote source) argument
175 proDelegate.connect(target, source);
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DRequest.java70 * Retrieves the the target object reference.
77 public abstract org.omg.CORBA.Object target(); method in class:Request
/openjdk7/jdk/src/share/classes/javax/swing/
H A DActionPropertyChangeListener.java40 * the target is still valid.
58 private transient OwnedWeakReference<T> target; field in class:ActionPropertyChangeListener
79 * PropertyChangeListener method. If the target has been gc'ed this
84 T target = getTarget();
85 if (target == null) {
88 actionPropertyChanged(target, getAction(), e);
93 * Invoked when a property changes on the Action and the target
96 protected abstract void actionPropertyChanged(T target, Action action, argument
112 this.target = new OwnedWeakReference<T>(c, queue, this);
116 if (target
147 OwnedWeakReference(U target, ReferenceQueue<? super U> queue, ActionPropertyChangeListener owner) argument
[all...]
H A DOverlayLayout.java61 * @param target the container to do layout against
63 @ConstructorProperties({"target"})
64 public OverlayLayout(Container target) { argument
65 this.target = target;
76 return this.target;
83 * @param target the container
85 public void invalidateLayout(Container target) { argument
86 checkContainer(target);
128 * in the specified target containe
136 preferredLayoutSize(Container target) argument
156 minimumLayoutSize(Container target) argument
178 maximumLayoutSize(Container target) argument
195 getLayoutAlignmentX(Container target) argument
207 getLayoutAlignmentY(Container target) argument
221 layoutContainer(Container target) argument
251 checkContainer(Container target) argument
282 private Container target; field in class:OverlayLayout
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/multi/
H A DMultiLookAndFeel.java41 * <a href="doc-files/multi_tsc.html" target="_top">Using the
187 * the <code>target</code> component,
194 * <code>getDefaults().getUI(target)</code> on each
205 * for the <code>target</code> component;
211 * @param target a component whose UI is represented by <code>mui</code>
224 JComponent target) {
229 ui = UIManager.getDefaults().getUI(target);
236 ui = auxiliaryLookAndFeels[i].getDefaults().getUI(target);
222 createUIs(ComponentUI mui, Vector uis, JComponent target) argument
/openjdk7/jdk/src/share/classes/javax/swing/text/rtf/
H A DRTFAttribute.java52 public boolean set(MutableAttributeSet target); argument
53 public boolean set(MutableAttributeSet target, int parameter); argument
55 public boolean setDefault(MutableAttributeSet target); argument
59 RTFGenerator target,
64 RTFGenerator target,
58 write(AttributeSet source, RTFGenerator target, boolean force) argument
63 writeValue(Object value, RTFGenerator target, boolean force) argument
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMSignatureProperty.java49 private final String target; field in class:DOMSignatureProperty
57 * @param target the target URI
64 * <code>target</code> is <code>null</code>
66 public DOMSignatureProperty(List content, String target, String id) { argument
67 if (target == null) {
68 throw new NullPointerException("target cannot be null");
83 this.target = target;
94 target
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/
H A DKeyboardFocusManagerPeerImpl.java108 Component target,
116 lightweightChild = (Component)target;
142 public static boolean requestFocusFor(Component target, CausedFocusEvent.Cause cause) { argument
143 return AWTAccessor.getComponentAccessor().requestFocus(target, cause);
107 deliverFocus(Component lightweightChild, Component target, boolean temporary, boolean focusedWindowChangeAllowed, long time, CausedFocusEvent.Cause cause, Component currentFocusOwner) argument
H A DOrientableFlowLayout.java131 * components in the specified target container.
133 * @param target the component which needs to be laid out.
138 public Dimension preferredLayoutSize(Container target) { argument
140 return super.preferredLayoutSize(target);
145 int n = target.countComponents();
147 Component c = target.getComponent(i);
158 Insets insets = target.insets();;
168 * contained in the specified target container.
170 * @param target the component which needs to be laid out.
173 public Dimension minimumLayoutSize(Container target) { argument
209 layoutContainer(Container target) argument
273 moveComponents(Container target, int x, int y, int width, int height, int colStart, int colEnd) argument
[all...]
/openjdk7/jdk/src/share/classes/java/beans/
H A DEventHandler.java41 * and a target object.
47 * to an application logic bean (the <em>target</em>). The most effective
98 * a listener that calls a method on the target object with no arguments.
130 * and use it to set the value of a property in the target object.
132 * sets the <code>nextFocusableComponent</code> property of the target
155 * just passes the incoming event object to the target's action.
161 *EventHandler.create(ActionListener.class, target, "doActionEvent", "")
172 * target.doActionEvent(e);
181 * the value of a property of the target object.
183 * sets the "label" property of the target
279 private Object target; field in class:EventHandler
311 EventHandler(Object target, String action, String eventPropertyName, String listenerMethodName) argument
372 applyGetters(Object target, String getters) argument
530 create(Class<T> listenerInterface, Object target, String action) argument
587 create(Class<T> listenerInterface, Object target, String action, String eventPropertyName) argument
677 create(Class<T> listenerInterface, Object target, String action, String eventPropertyName, String listenerMethodName) 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/java/lang/invoke/
H A DInvokeGeneric.java96 /** Return a method handle to invoke on the callerType, target, and remaining arguments.
98 * This is the first look at the caller type and target.
100 private MethodHandle dispatch(MethodType callerType, MethodHandle target) { argument
101 MethodType targetType = target.type();
102 if (USE_AS_TYPE_PATH || target.isVarargsCollector()) {
103 MethodHandle newTarget = target.asType(callerType);
116 private MethodHandle dispatchWithConversion(MethodType callerType, MethodHandle target) { argument
117 MethodHandle finisher = dispatch(callerType, target);
118 if (returnConversionNeeded(callerType, target))
127 private boolean returnConversionNeeded(MethodType callerType, MethodHandle target) { argument
[all...]

Completed in 57 milliseconds

1234567891011>>