Searched defs:component (Results 101 - 124 of 124) sorted by relevance

12345

/openjdk7/jdk/src/solaris/classes/sun/awt/
H A DX11InputMethod.java278 // needs to reset the last xic focussed component.
349 /* If the last XIC focussed component has a different peer as the
350 current focussed component, change the XIC focus to the newly
351 focussed component.
375 /* Usually as the client component, let's call it component A,
377 component, let's call it component B, gets the focus, activate is first called on
380 focused component B. Here is the call sequence.
389 component
452 setAWTFocussedComponent(Component component) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DGroupLayout.java50 * of as an invisible component with a minimum, preferred and maximum
61 * to use instead of that from the component. The range for a {@code
87 * range of each component has been projected onto the axes,
110 * for the component (if specified) or the default alignment of the
112 * with an alignment of {@code LEADING}. If the component orientation were
222 * Indicates the size from the component or gap should be used for a
230 * Indicates the preferred size from the component or gap should
385 * Sets whether component visiblity is considered when sizing and
400 * @param honorsVisibility whether component visiblity is considered when
414 * Returns whether component visiblit
444 setHonorsVisibility(Component component, Boolean honorsVisibility) argument
844 addLayoutComponent(String name, Component component) argument
856 removeLayoutComponent(Component component) argument
944 addLayoutComponent(Component component, Object constraints) argument
1125 getComponentInfo(Component component) argument
1504 addComponent(Component component) argument
1522 addComponent(Component component, int min, int pref, int max) argument
1790 addComponent(Component component) argument
1802 addComponent(boolean useAsBaseline, Component component) argument
1814 addComponent(Component component, int min, int pref, int max) argument
1835 addComponent(boolean useAsBaseline, Component component, int min, int pref, int max) argument
2475 addComponent(Component component) argument
2482 addComponent(Component component, int min, int pref, int max) argument
2529 addComponent(Component component, Alignment alignment) argument
2548 addComponent(Component component, Alignment alignment, int min, int pref, int max) argument
2934 private Component component; field in class:GroupLayout.ComponentSpring
2949 ComponentSpring(Component component, int min, int pref, int max) argument
3060 setComponent(Component component) argument
3587 private Component component; field in class:GroupLayout.ComponentInfo
3601 ComponentInfo(Component component) argument
3668 setComponent(Component component) argument
[all...]
H A DJList.java57 * A component that displays a list of objects and allows the user to select
154 * painted, the list's {@code ListUI} asks the cell renderer for the component,
157 * component to render, is installed by the lists's {@code ListUI}. You can
278 * description: A component which allows for the selection of one or more objects from a list.
334 * The drop mode for this component.
363 * the associated component. If the drop mode is either
503 * renders this component.
505 * @return the <code>ListUI</code> object that renders this component
514 * renders this component.
552 * the look and feel for this component
3190 private Component component = null; field in class:JList.AccessibleJList.AccessibleJListChild
[all...]
H A DJTabbedPane.java43 * A component that lets the user switch between a group of components by
67 * // In this case the custom component is responsible for rendering the
74 * provide a custom component that animates or one that has widgets for
77 * If you specify a component for a tab, the <code>JTabbedPane</code>
81 * Do not use <code>setVisible</code> directly on a tab component to make it visible,
100 * description: A component which provides a tab folder metaphor for
101 * displaying one component from a set of components.
154 /* The component that is currently visible */
210 * Returns the UI object which implements the L&F for this component.
220 * Sets the UI object which implements the L&F for this component
699 insertTab(String title, Icon icon, Component component, String tip, int index) argument
766 addTab(String title, Icon icon, Component component, String tip) argument
782 addTab(String title, Icon icon, Component component) argument
797 addTab(String title, Component component) argument
813 add(Component component) argument
833 add(String title, Component component) argument
854 add(Component component, int index) argument
879 add(Component component, Object constraints) argument
907 add(Component component, Object constraints, int index) argument
1023 remove(Component component) argument
1540 setComponentAt(int index, Component component) argument
1717 indexOfComponent(Component component) argument
2040 Component component; field in class:JTabbedPane.Page
2048 Page(JTabbedPane parent, String title, Icon icon, Icon disabledIcon, Component component, String tip) argument
2368 setTabComponentAt(int index, Component component) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicSplitPaneUI.java853 * dragging session. It is recommended that the passed in component
1075 * Returns the preferred size for the passed in component,
1086 * Returns the minimum size for the passed in component,
1097 * Returns the maximum size for the passed in component,
1350 // Reset the bounds of each component
1404 * Adds the component at place. Place must be one of
1408 public void addLayoutComponent(String place, Component component) { argument
1414 components[2] = component;
1415 sizes[2] = getSizeForPrimaryAxis(component.
1419 components[0] = component;
1509 removeLayoutComponent(Component component) argument
[all...]
H A DBasicTabbedPaneUI.java182 * This is set to true when a component is added/removed from the tab
646 * Returns an enum indicating how the baseline of the component
681 // The offset is not applied to the tab component, and so
817 * @param selectedIndex the tab index of the selected component
1515 * of the JTabbedPane component. This is required because the tab rects
1516 * are by default defined in the coordinate space of the component where
1615 protected void setVisibleComponent(Component component) { argument
1617 && visibleComponent != component
1623 if (component != null && !component
[all...]
H A DBasicTreeUI.java517 * any component in path is currently valid.
635 throw new NullPointerException( "null component passed to BasicTreeUI.installUI()" );
912 * when the component moves.
1120 * Returns an enum indicating how the baseline of the component
1139 throw new InternalError("incorrect component");
1532 Component component;
1534 component = currentCellRenderer.getTreeCellRendererComponent
1539 rendererPane.paintComponent(g, component, tree, bounds.x, bounds.y,
1883 Component component = SwingUtilities.getUnwrappedParent(tree);
1884 if (component instanceo
4211 scroll(JTree component, BasicTreeUI ui, int direction, int amount) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/
H A DSunToolkit.java694 * component before painting if this is supported by the current
701 public void disableBackgroundErase(Component component) { argument
702 disableBackgroundEraseImpl(component);
705 private void disableBackgroundEraseImpl(Component component) { argument
706 AWTAccessor.getComponentAccessor().setBackgroundEraseDisabled(component, true);
1018 * given a native component (eg the direct parent may be lightweight).
1025 * Gives native peers the ability to query the closest HW component.
1026 * If the given component is heavyweight, then it returns this. Otherwise,
1027 * it goes one level up in the hierarchy and tests next component.
1828 * Returns the <code>Window</code> ancestor of the component <cod
[all...]
H A DAWTAccessor.java68 * Sets whether the native background erase for a component
74 * component has been disabled via
80 * Gets the bounds of this component in the form of a
82 * component's width, height, and location relative to
87 * Sets the shape of a lw component to cut out from hw components.
94 * Sets GraphicsConfiguration value for the component.
98 * Requests focus to the component.
102 * Determines if the component can gain focus.
107 * Returns whether the component is visible without invoking
118 * Returns the appContext of the component
414 setMostRecentFocusOwner(Window window, Component component) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DTMSchema.java203 public String getControlName(Component component) { argument
205 if (component instanceof JComponent) {
206 JComponent c = (JComponent)component;
222 * An enumeration of the possible component states
469 * An enumeration of the possible component attributes and the
/openjdk7/jdk/src/share/classes/java/awt/
H A DKeyboardFocusManager.java144 public void setMostRecentFocusOwner(Window window, Component component) {
145 KeyboardFocusManager.setMostRecentFocusOwner(window, component);
1795 static void setMostRecentFocusOwner(Component component) { argument
1796 Component window = component;
1801 setMostRecentFocusOwner((Window)window, component);
1805 Component component) {
1806 // ATTN: component has a strong reference to window via chain
1809 // value (component) back to its key (window).
1811 if (component != null) {
1812 weakValue = new WeakReference(component);
1804 setMostRecentFocusOwner(Window window, Component component) argument
2112 final Component component; field in class:KeyboardFocusManager.LightweightFocusRequest
2116 LightweightFocusRequest(Component component, boolean temporary, CausedFocusEvent.Cause cause) argument
[all...]
H A DWindow.java221 * Holds the reference to the component which last had focus in this window
646 * Construct a name for this component. Called by getName() when the
1578 * dialogs such as component positions, <code>LayoutManager</code>s
1600 * dialogs such as component positions, <code>LayoutManager</code>s
2029 * are enabled for this component; this happens when one of the
3027 * the component; also reads a list of
3153 * component according to the following scenarios.
3159 * <li>If the component is {@code null}, or the {@code
3160 * GraphicsConfiguration} associated with this component is
3165 * <li>If the component i
3345 setTemporaryLostComponent(Component component) argument
3880 setLayersOpaque(Component component, boolean isOpaque) argument
[all...]
H A DContainer.java68 * A generic Abstract Window Toolkit(AWT) container object is a component
74 * component to a container, it will be added to the end of the list
103 private java.util.List<Component> component = new java.util.ArrayList<Component>(); field in class:Container
163 // keeps track of the threads that are printing this component
165 // True if there is at least one thread that's printing this component
215 * @serialField component Component[]
240 new ObjectStreamField("component", Component[].class),
273 * somewhere higher up in the component tree that is native.
306 return component.size();
310 * Gets the nth component i
[all...]
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Component.h161 * Access to the various objects of this aggregate component
169 * Access to the properties of the component
197 * Enable/disable component
211 * Returns the parent component. If no parent window, or the
216 /* Get the component's immediate container. Note: may return NULL while
217 the component is being reparented in full-screen mode by Direct3D */
220 /* Is a component a container? Used by above method */
274 * methods on this component
326 /* for multifont component */
427 /* Determines whether the component i
831 ChildListItem(UINT id, AwtComponent* component) argument
847 PushChild(UINT id, AwtComponent* component) argument
[all...]
H A Dawt_DnDDS.cpp298 AwtDragSource::AwtDragSource(JNIEnv* env, jobject peer, jobject component, argument
320 m_component = env->NewGlobalRef(component);
1713 JNIEnv* env, jobject self, jobject component, jobject transferable,
1725 AwtDragSource* ds = new AwtDragSource(env, self, component,
1712 Java_sun_awt_windows_WDragSourceContextPeer_createDragSource( JNIEnv* env, jobject self, jobject component, jobject transferable, jobject trigger, jint actions, jlongArray formats, jobject formatMap) argument
H A Dawt_DnDDT.cpp57 AwtDropTarget::AwtDropTarget(JNIEnv* env, AwtComponent* component) { argument
59 m_component = component;
60 m_window = component->GetHWnd();
62 m_target = env->NewGlobalRef(component->GetTarget(env));
1167 AwtDropTarget::call_dTCenter(JNIEnv* env, jobject self, jobject component, jint x, jint y, argument
1173 return env->CallIntMethod(self, dTCenter, component, x, y, dropAction,
1178 AwtDropTarget::call_dTCexit(JNIEnv* env, jobject self, jobject component, jlong nativeCtxt) { argument
1182 env->CallVoidMethod(self, dTCexit, component, nativeCtxt);
1186 AwtDropTarget::call_dTCmotion(JNIEnv* env, jobject self, jobject component, jint x, jint y, argument
1192 return env->CallIntMethod(self, dTCmotion, component,
1197 call_dTCdrop(JNIEnv* env, jobject self, jobject component, jint x, jint y, jint dropAction, jint actions, jlongArray formats, jlong nativeCtxt) argument
[all...]
H A Dawt_Toolkit.cpp625 * Structure holding the information to create a component. This packet is
635 * Create an AwtXxxx component using a given factory function
639 void AwtToolkit::CreateComponent(void* component, void* parent, argument
650 jobject gcomponent = env->NewGlobalRef((jobject)component);
762 // all the messages for this component are processed, so
767 // component to be processed
1397 * Offer preprocessing first to the target component, then call out to
H A Dawt_Window.cpp138 jobject component; member in struct:RequestWindowFocusStruct
1706 /* Update the java AWT target component's fields directly */
1913 // various component-related values, such as insets
2102 jobject self = rfs->component;
3622 rfs->component = selfGlobalRef;
H A Dawt_Component.cpp107 jobject component; member in struct:ReshapeStruct
113 jobject component; member in struct:NativeHandleEventStruct
118 jobject component; member in struct:SetColorStruct
123 jobject component; member in struct:SetFontStruct
128 jobject component; member in struct:CreatePrintedPixelsStruct
135 jobject component; member in struct:SetRectangularShapeStruct
146 jobject component; member in struct:SetZOrderStruct
151 jobject component; member in struct:SetFocusStruct
269 * All the messages for this component are processed, native
271 * the native one anymore. So we can safely destroy component'
373 AwtComponent *component = local
6272 AwtComponent *component = (AwtComponent *)pData; local
[all...]
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dawt_ImagingLib.c159 static int expandPackedBCR(JNIEnv *env, RasterS_t *rasterP, int component,
161 static int expandPackedSCR(JNIEnv *env, RasterS_t *rasterP, int component,
163 static int expandPackedICR(JNIEnv *env, RasterS_t *rasterP, int component,
166 int component, unsigned char *outDataP,
169 int component, unsigned char *outDataP,
172 int component, unsigned char *outDataP,
174 static int setPackedBCR(JNIEnv *env, RasterS_t *rasterP, int component,
176 static int setPackedSCR(JNIEnv *env, RasterS_t *rasterP, int component,
178 static int setPackedICR(JNIEnv *env, RasterS_t *rasterP, int component,
181 int component, unsigne
1993 expandPacked(JNIEnv *env, BufImageS_t *img, ColorModelS_t *cmP, RasterS_t *rasterP, int component, unsigned char *bdataP) argument
2033 cvtCustomToDefault(JNIEnv *env, BufImageS_t *imageP, int component, unsigned char *dataP) argument
2080 cvtDefaultToCustom(JNIEnv *env, BufImageS_t *imageP, int component, unsigned char *dataP) argument
2913 expandPackedBCR(JNIEnv *env, RasterS_t *rasterP, int component, unsigned char *outDataP) argument
3000 expandPackedBCRdefault(JNIEnv *env, RasterS_t *rasterP, int component, unsigned char *outDataP, int forceAlpha) argument
3094 expandPackedSCR(JNIEnv *env, RasterS_t *rasterP, int component, unsigned char *outDataP) argument
3188 expandPackedSCRdefault(JNIEnv *env, RasterS_t *rasterP, int component, unsigned char *outDataP, int forceAlpha) argument
3291 expandPackedICR(JNIEnv *env, RasterS_t *rasterP, int component, unsigned char *outDataP) argument
3382 expandPackedICRdefault(JNIEnv *env, RasterS_t *rasterP, int component, unsigned char *outDataP, int forceAlpha) argument
3480 setPackedBCR(JNIEnv *env, RasterS_t *rasterP, int component, unsigned char *inDataP) argument
3556 setPackedSCR(JNIEnv *env, RasterS_t *rasterP, int component, unsigned char *inDataP) argument
3632 setPackedICR(JNIEnv *env, RasterS_t *rasterP, int component, unsigned char *inDataP) argument
3709 setPackedBCRdefault(JNIEnv *env, RasterS_t *rasterP, int component, unsigned char *inDataP, int supportsAlpha) argument
3807 setPackedSCRdefault(JNIEnv *env, RasterS_t *rasterP, int component, unsigned char *inDataP, int supportsAlpha) argument
3904 setPackedICRdefault(JNIEnv *env, RasterS_t *rasterP, int component, unsigned char *inDataP, int supportsAlpha) argument
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaTabbedPaneCopyFromBasicUI.java174 * This is set to true when a component is added/removed from the tab
616 * Returns an enum indicating how the baseline of the component
650 // The offset is not applied to the tab component, and so
778 * @param selectedIndex the tab index of the selected component
1400 * of the JTabbedPane component. This is required because the tab rects
1401 * are by default defined in the coordinate space of the component where
1497 protected void setVisibleComponent(final Component component) { argument
1498 if (visibleComponent != null && visibleComponent != component && visibleComponent.getParent() == tabPane && visibleComponent.isVisible()) {
1502 if (component != null && !component
[all...]
/openjdk7/jdk/src/share/classes/sun/security/tools/policytool/
H A DPolicyTool.java1063 * Add a component to the PolicyTool window
1065 void addNewComponent(Container container, Component component, argument
1069 // add the component at the specified gridbag index
1070 container.add(component, index);
1083 gbl.setConstraints(component, gbc);
1088 * Add a component to the PolicyTool window without external padding
1090 void addNewComponent(Container container, Component component, argument
1095 addNewComponent(container, component, index, gridx, gridy,
1102 * Init the policy_entry_list TEXTAREA component in the
1113 * Replace the policy_entry_list TEXTAREA component i
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/traversers/
H A DXSDHandler.java290 // Stores XSDocumentInfo (keyed by component name), to check for duplicate
921 // promoting annotations to parent component
1029 // promoting annotations to parent component
1052 // promoting annotations to parent component
1649 // so if the requested component is a type, and could be found in the
1669 // Recover and continue to look for the component.
1681 // if there is such grammar, check whether the requested component is in the grammar
1686 // if the component is parsed, return it
1703 // the component is not parsed, try to find a DOM element for it
1734 reportSchemaError("Internal-Error", new Object [] {"XSDHandler asked to locate component o
2596 canAddComponent(XSObject component, XSDDescription desc) argument
2990 expandRelatedComponents(XSObject component, Vector componentList, Map<String, Vector> dependencies) argument
3098 expandRelatedAttributeUseComponents(XSAttributeUse component, Vector componentList, String namespace, Map<String, Vector> dependencies) argument
3103 expandRelatedParticleComponents(XSParticle component, Vector componentList, String namespace, Map<String, Vector> dependencies) argument
3178 addGlobalComponent(XSObject component, XSDDescription desc) argument
[all...]
/openjdk7/hotspot/src/share/vm/adlc/
H A Dformssel.cpp127 // Examine each component to see if it is a TEMP
129 // Skip the first component, if already handled as (SET dst (...))
465 // Check if a component has the same name and is a USE
929 const Component *component = _components.search(name); local
930 if ( component == NULL ) {
933 component = _components.search(name);
934 if (component->isa(Component::USE) && !component->isa(Component::TEMP) && _matrule) {
935 const Form *form = globalAD->globalNames()[component->_type];
936 assert( form, "component typ
2892 insert(Component *component, bool mflag) argument
2898 Component * component = new Component(name, opType, usedef); local
2929 Component *component = NULL; local
2958 Component *component = NULL; local
2975 Component *component; local
3032 Component *component; local
3110 Component *component; local
[all...]

Completed in 202 milliseconds

12345