Searched defs:target (Results 326 - 350 of 670) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DMetalToolBarUI.java108 JComponent target = components.get(counter).get();
110 if (target == c || target == null) {
117 * Finds a previously registered component of class <code>target</code>
121 Class target) {
132 else if (target.isInstance(component) && SwingUtilities.
120 findRegisteredComponentOfType(JComponent from, Class target) argument
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DFormView.java458 String target = (String) attrs.getAttribute(HTML.Attribute.TARGET);
459 if (target == null) {
460 target = "_self";
470 storePostData(doc, target, data);
497 actionURL, form, target, methodType, data);
518 private void storePostData(HTMLDocument doc, String target, String data) { argument
525 * responsibility of FrameView which updates the target frame
541 propName += ("." + target);
/openjdk7/jdk/src/share/classes/javax/xml/crypto/dsig/
H A DXMLSignatureFactory.java563 * list of {@link XMLStructure}s, target URI and optional id.
567 * @param target the target URI of the Signature that this property applies
572 * <code>target</code> is <code>null</code>
578 (List content, String target, String id);
577 newSignatureProperty(List content, String target, String id) argument
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMXMLSignatureFactory.java127 (List info, String target, String id) {
128 return new DOMSignatureProperty(info, target, id);
126 newSignatureProperty(List info, String target, String id) argument
/openjdk7/jdk/src/share/classes/java/beans/
H A DBeans.java354 * the requested target view isn't available then the given
369 * Check if a bean can be viewed as a given target type.
506 Applet target; field in class:BeansAppletContext
509 BeansAppletContext(Applet target) { argument
510 this.target = target;
539 Image img = target.createImage((java.awt.image.ImageProducer)o);
554 applets.addElement(target);
562 public void showDocument(URL url, String target) { argument
591 transient Applet target; field in class:BeansAppletStub
596 BeansAppletStub(Applet target, AppletContext context, URL codeBase, URL docBase) argument
[all...]
H A DXMLEncoder.java136 * The "class" attribute is used to specify the target of a static
141 * the outer context as the target if no target is defined
224 public boolean marked = false; // Marked -> refs > 0 unless ref was a target.
334 private List<Statement> statementList(Object target) { argument
335 List<Statement> list = targetToStatementList.get(target);
338 targetToStatementList.put(target, list);
364 Object target = exp.getTarget();
366 if (!(target instanceof Class)) {
367 statementList(target)
[all...]
/openjdk7/jdk/src/share/classes/java/nio/file/spi/
H A DFileSystemProvider.java618 * Creates a symbolic link to a target. This method works in exactly the
626 * @param target
627 * the target of the symbolic link
647 public void createSymbolicLink(Path link, Path target, FileAttribute<?>... attrs) argument
743 * Reads the target of a symbolic link. This method works in exactly the
755 * if the target could otherwise not be read because the file
769 * Copy a file to a target file. This method works in exactly the manner
771 * except that both the source and target paths must be associated with
776 * @param target
777 * the path to the target fil
802 copy(Path source, Path target, CopyOption... options) argument
838 move(Path source, Path target, CopyOption... options) argument
[all...]
/openjdk7/jdk/src/share/classes/java/text/
H A DCollator.java291 * Compares the source string to the target string according to the
294 * less than, equal to or greater than the target string. See the Collator
302 * @param target the target string.
304 * target, value is zero if source and target are equal, value is greater than zero
305 * if source is greater than target.
309 public abstract int compare(String source, String target); argument
347 * @param target the target strin
352 equals(String source, String target) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/naming/directory/
H A DBasicAttribute.java133 Attribute target = (Attribute)obj;
136 if (isOrdered() != target.isOrdered()) {
140 if (attrID.equals(target.getID()) &&
141 (len=size()) == target.size()) {
146 if (!valueEquals(get(i), target.get(i))) {
152 Enumeration theirs = target.getAll();
328 // In the Java 2 platform, can just replace this with Vector.indexOf(target);
329 private int find(Object target) { argument
331 if (target == null) {
337 } else if ((cl=target
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A DstackMapFrame.cpp174 const StackMapFrame* target) const {
176 // target frame does not depend upon the current type.
186 assert(max_locals() == target->max_locals() &&
187 stack_size() == target->stack_size(), "StackMap sizes must match");
192 if (!flag_this_uninit() || target->flags() != 0) {
196 for (int i = 0; i < target->locals_size(); ++i) {
197 if (locals()[i] == this_type && target->locals()[i] != top) {
202 for (int i = 0; i < target->stack_size(); ++i) {
203 if (stack()[i] == this_type && target->stack()[i] != top) {
212 const StackMapFrame* target, boo
211 is_assignable_to( const StackMapFrame* target, bool is_exception_handler, ErrorContext* ctx, TRAPS) const argument
[all...]
H A DstackMapTable.cpp72 StackMapFrame* frame, int32_t target,
74 int index = get_index_from_offset(target);
75 return match_stackmap(frame, target, index, match, update, ctx, THREAD);
83 // checking a branch target/exception handler: true false
89 StackMapFrame* frame, int32_t target, int32_t frame_index,
94 *ctx, "Expecting a stackmap frame at branch target %d", target);
101 // when checking handler target, match == true && update == false
126 StackMapFrame* frame, int32_t target, TRAPS) const {
129 frame, target, tru
71 match_stackmap( StackMapFrame* frame, int32_t target, bool match, bool update, ErrorContext* ctx, TRAPS) const argument
88 match_stackmap( StackMapFrame* frame, int32_t target, int32_t frame_index, bool match, bool update, ErrorContext* ctx, TRAPS) const argument
125 check_jump_target( StackMapFrame* frame, int32_t target, TRAPS) const argument
139 check_new_object( const StackMapFrame* frame, int32_t target, TRAPS) const argument
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A DgenerateOptoStub.cpp232 // For is-fancy-jump, the C-return value is also the branch target
233 Node* target = map()->in(TypeFunc::Parms); local
289 target, map()->in(TypeFunc::Parms));
298 target, map()->in(TypeFunc::Parms));
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DMXBeanIntrospector.java113 Object invokeM2(ConvertingMethod m, Object target, Object[] args, argument
117 return m.invokeWithOpenReturn((MXBeanLookup) cookie, target, args);
H A DStandardMBeanIntrospector.java109 Object invokeM2(Method m, Object target, Object[] args, Object cookie) argument
112 return MethodUtil.invoke(m, target, args);
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/agent/
H A DSnmpMibAgent.java709 private void concatVector(Vector<SnmpVarBind> target, Vector<SnmpVarBind> source) { argument
714 target.addElement(new SnmpVarBind(var.oid, var.value));
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DFilter.java275 private static int indexOf(byte[] str, String target, int start, int end) { argument
276 int where = indexOf(str, target.charAt(0), start, end);
278 for (int i = 1; i < target.length(); i++) {
279 if (str[where+i] != target.charAt(i)) {
/openjdk7/jdk/src/share/classes/java/awt/
H A DBorderLayout.java544 * based on the target <code>Container</code>'s component orientation.
555 * @param target the {@code Container} used to obtain
556 * the constraint location based on the target
562 * @exception NullPointerException if the target parameter is null
566 public Component getLayoutComponent(Container target, Object constraints) { argument
567 boolean ltr = target.getComponentOrientation().isLeftToRight();
632 * Determines the minimum size of the <code>target</code> container
638 * @param target the container in which to do the layout.
645 public Dimension minimumLayoutSize(Container target) { argument
646 synchronized (target
701 preferredLayoutSize(Container target) argument
750 maximumLayoutSize(Container target) argument
780 invalidateLayout(Container target) argument
802 layoutContainer(Container target) argument
[all...]
H A DCardLayout.java326 * in the specified target container.
327 * @param target the component which needs to be laid out
332 public Dimension maximumLayoutSize(Container target) { argument
362 public void invalidateLayout(Container target) { argument
H A DDefaultKeyboardFocusManager.java186 * A special type of SentEvent which updates a counter in the target
231 * until the event is handled or target AppContext is disposed.
235 static boolean sendMessage(Component target, AWTEvent e) { argument
238 final AppContext targetAppContext = target.appContext;
740 * been consumed, its target is enabled, and the focus owner is not null,
741 * this method dispatches the event to its target. This method will also
787 Container target = source.getNativeContainer();
788 if (target != null) {
789 peer = target.getPeer();
812 Component target
870 typeAheadAssertions(Component target, AWTEvent e) argument
[all...]
H A DFlowLayout.java393 * <i>visible</i> components in the specified target container.
395 * @param target the container that needs to be laid out
402 public Dimension preferredLayoutSize(Container target) { argument
403 synchronized (target.getTreeLock()) {
405 int nmembers = target.getComponentCount();
412 Component m = target.getComponent(i);
434 Insets insets = target.getInsets();
443 * components contained in the specified target container.
444 * @param target the container that needs to be laid out
451 public Dimension minimumLayoutSize(Container target) { argument
514 moveComponents(Container target, int x, int y, int width, int height, int rowStart, int rowEnd, boolean ltr, boolean useBaseline, int[] ascent, int[] descent) argument
587 layoutContainer(Container target) argument
[all...]
H A DGridBagLayout.java551 * space of the target container. This value represents the pixel
750 * in the specified target container.
751 * @param target the container which needs to be laid out
757 public Dimension maximumLayoutSize(Container target) { argument
791 public void invalidateLayout(Container target) { argument
H A DMediaTracker.java178 Component target; field in class:MediaTracker
200 target = comp;
908 int flags = tracker.target.checkImage(image, width, height, null);
922 if (tracker.target.prepareImage(image, width, height, this)) {
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_CodeStubs_sparc.cpp337 address target = NULL; local
339 case access_field_id: target = Runtime1::entry_for(Runtime1::access_field_patching_id); break;
340 case load_klass_id: target = Runtime1::entry_for(Runtime1::load_klass_patching_id); break;
348 __ call(target, relocInfo::runtime_call_type);
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_CodeStubs_x86.cpp359 address target = NULL; local
361 case access_field_id: target = Runtime1::entry_for(Runtime1::access_field_patching_id); break;
362 case load_klass_id: target = Runtime1::entry_for(Runtime1::load_klass_patching_id); break;
370 __ call(RuntimeAddress(target));
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/serialization/
H A DXMLParser.java249 public void processingInstruction(String target, String data) throws SAXException { argument

Completed in 111 milliseconds

<<11121314151617181920>>