/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/ |
H A D | WhitespaceStrippingElementMatcher.java | 39 * @param support The XPath runtime state. 47 XPathContext support, Element targetElement) throws TransformerException; 46 shouldStripWhiteSpace( XPathContext support, Element targetElement) argument
|
H A D | NodeSet.java | 157 * does not support the clone() operation. 199 * NodeIterator interface, so we have to support it. 374 * Add a node to the NodeSet. Not all types of NodeSets support this 514 * @param support The XPath runtime context. 518 public void addNodesInDocOrder(NodeList nodelist, XPathContext support) argument 532 addNodeInDocOrder(node, support); 542 * @param support The XPath runtime context. 546 public void addNodesInDocOrder(NodeIterator iterator, XPathContext support) argument 556 addNodeInDocOrder(node, support); 567 * @param support Th 573 addNodesInDocOrder(int start, int end, int testIndex, NodeList nodelist, XPathContext support) argument 634 addNodeInDocOrder(Node node, boolean test, XPathContext support) argument 708 addNodeInDocOrder(Node node, XPathContext support) argument [all...] |
H A D | NodeSetDTM.java | 252 * does not support the clone() operation. 270 * does not support the clone() operation. 312 * DTMIterator interface, so we have to support it. 530 * Add a node to the NodeSetDTM. Not all types of NodeSetDTMs support this 673 // * @param support The XPath runtime context. 677 // public void addNodesInDocOrder(NodeList nodelist, XPathContext support) 691 // addNodeInDocOrder(node, support); 701 * @param support The XPath runtime context. 705 public void addNodesInDocOrder(DTMIterator iterator, XPathContext support) argument 715 addNodeInDocOrder(node, support); 794 addNodeInDocOrder(int node, boolean test, XPathContext support) argument 869 addNodeInDocOrder(int node, XPathContext support) argument [all...] |
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/objects/ |
H A D | XNull.java | 100 * @param support XPath context to use for the conversion 104 public int rtf(XPathContext support) argument 106 // DTM frag = support.createDocumentFragment();
|
H A D | XString.java | 177 * @param support Xpath context to use for the conversion 181 public int rtf(XPathContext support) argument 184 DTM frag = support.createDocumentFragment();
|
H A D | XObject.java | 81 * For support of literal objects in xpaths. 320 * @param support XPath context to use for the conversion 324 public int rtf(XPathContext support) argument 331 DTM frag = support.createDocumentFragment(); 345 * @param support XPath context to use for the conversion 349 public DocumentFragment rtree(XPathContext support) argument 356 DTM frag = support.createDocumentFragment(); 365 DTM frag = support.getDTM(result); 485 * @param support XPath context to use for the conversion 491 public Object castToType(int t, XPathContext support) argument [all...] |
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/ |
H A D | NamingEventNotifier.java | 57 private EventSupport support; field in class:NamingEventNotifier 63 NamingEventNotifier(EventSupport support, LdapCtx ctx, NotifierArgs info, argument 66 this.support = support; 179 support.removeDeadNotifier(info); 224 support.queueEvent(e, namingListeners); 236 support.queueEvent(e, namingListeners); 251 support.queueEvent(e, namingListeners); 276 support.queueEvent(e, namingListeners); 284 support [all...] |
/openjdk7/jdk/src/share/classes/com/sun/beans/editors/ |
H A D | ColorEditor.java | 147 support.firePropertyChange("", null, null); 186 support.addPropertyChangeListener(l); 190 support.removePropertyChangeListener(l); 213 private PropertyChangeSupport support = new PropertyChangeSupport(this); field in class:ColorEditor
|
H A D | FontEditor.java | 112 support.firePropertyChange("", null, null); 196 support.addPropertyChangeListener(l); 200 support.removePropertyChangeListener(l); 217 private PropertyChangeSupport support = new PropertyChangeSupport(this); field in class:FontEditor
|
/openjdk7/jdk/src/share/classes/javax/swing/ |
H A D | TransferHandler.java | 74 * built in support will use the color returned by <code>getForeground</code> as the source 347 * Note: For components with built-in drop support, this location 704 * Causes the Swing drag support to be initiated. This is called by 708 * implementations to use the Swing drag support. This method can also be called 710 * to take advantage of the Swing drag support. 732 // only support known actions 734 // only support valid source actions 817 * @param support the object containing the details of 821 * @throws NullPointerException if <code>support</code> is {@code null} 825 public boolean importData(TransferSupport support) { argument 924 canImport(TransferSupport support) argument 1312 private TransferSupport support = field in class:TransferHandler.DropHandler 1433 setComponentDropLocation(TransferSupport support, boolean forDrop) argument [all...] |
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/ |
H A D | BasicTextUI.java | 59 * This class also provides some concurrency support if the 93 * future Swing releases. The current serialization support is 95 * the same version of Swing. As of 1.4, support for long term storage 446 // backward compatibility support... keymaps for the UI 2419 public boolean importData(TransferSupport support) { argument 2420 isDrop = support.isDrop(); 2424 ((JTextComponent)support.getComponent()).getDropMode() == DropMode.INSERT; 2426 dropBias = ((JTextComponent.DropLocation)support.getDropLocation()).getBias(); 2428 dropAction = support.getDropAction(); 2432 return super.importData(support); [all...] |
/openjdk7/hotspot/src/share/vm/services/ |
H A D | management.cpp | 85 // These counters are for java.lang.management API support. 101 // Initialize optional support 153 void Management::get_optional_support(jmmOptionalSupport* support) { argument 154 memcpy(support, &_optional_support, sizeof(jmmOptionalSupport)); 463 JVM_LEAF(jint, jmm_GetOptionalSupport(JNIEnv *env, jmmOptionalSupport* support)) 464 if (support == NULL) { 467 Management::get_optional_support(support);
|