Searched refs:container (Results 101 - 112 of 112) sorted by relevance

12345

/openjdk7/jdk/src/share/classes/javax/swing/
H A DJComponent.java73 * whose root is a top-level Swing container.
2076 * container, with the same charCode and the same modifiers,
2968 Container container, boolean pressed) {
2971 e, pressed, container)) {
2974 if (container instanceof Popup.HeavyWeightWindow) {
2975 container = ((Window)container).getOwner();
4593 * been added to any container.
4596 * or <code>null</code> if not in any container
5024 // parent Container's up to Window or Applet. First container i
2967 processKeyBindingsForAllComponents(KeyEvent e, Container container, boolean pressed) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DClassReader.java1528 MethodSymbol findAccessMethod(Type container, Name name) { argument
1531 for (Scope.Entry e = container.tsym.members().lookup(name);
1546 container,
1550 container,
1565 return new MethodSymbol(PUBLIC | ABSTRACT, name, mt, container.tsym);
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dgtk2_interface.h456 GtkContainer container; member in struct:__anon998
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DType.java1313 public ErrorType(Name name, TypeSymbol container, Type originalType) { argument
1314 this(new ClassSymbol(PUBLIC|STATIC|ACYCLIC, name, null, container), originalType);
H A DTypes.java2527 public Type createErrorType(Name name, TypeSymbol container, Type originalType) { argument
2528 return new ErrorType(name, container, originalType);
/openjdk7/jdk/src/share/classes/sun/security/tools/policytool/
H A DPolicyTool.java1065 void addNewComponent(Container container, Component component, argument
1070 container.add(component, index);
1073 GridBagLayout gbl = (GridBagLayout)container.getLayout();
1090 void addNewComponent(Container container, Component component, argument
1095 addNewComponent(container, component, index, gridx, gridy,
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DStyleSheet.java1922 Container container;
1923 if (v != null && (container = v.getContainer()) != null) {
1924 ret = container.getComponentOrientation().isLeftToRight();
2250 * @param aw width of the container the bullet is placed in
2251 * @param ah height of the container the bullet is placed in
2272 * @param aw width of the container the bullet is placed in
2273 * @param ah height of the container the bullet is placed in
2299 * @param aw width of the container the bullet is placed in
2300 * @param ah height of the container the bullet is placed in
/openjdk7/jdk/src/share/classes/java/awt/
H A DContainer.java68 * A generic Abstract Window Toolkit(AWT) container object is a component
71 * Components added to a container are tracked in a list. The order
73 * within the container. If no index is specified when adding a
74 * component to a container, it will be added to the end of the list
99 * The components in this container.
106 * Layout manager for this container.
114 * Event router for lightweight components. If this container
203 * Number of HW or LW components in this container (including
213 * The number of components in this container.
216 * The components in this container
3215 isFocusCycleRoot(Container container) argument
[all...]
H A DComponent.java108 * invoked on the top-most invalid container of the hierarchy.
200 * added to a container that also is a peer.
982 * hosted by a native container somewhere higher up in the component
1038 * @return the parent container of this component
1131 * <code>Component</code> object's top-level container is
1179 "adding a container to a container on a different GraphicsDevice");
1231 * container and all its children are also valid.
1233 * before they are first shown on the screen. By the time the parent container
1394 * that the component must be visible, and it must be in a container
7796 isFocusCycleRoot(Container container) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DPreprocessor.java322 dummyEntry.container (parser.currentModule);
646 // Add pragma entry to container
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DLower.java2008 ClassSymbol container = currentClass;
2012 container.members());
2018 container);
2019 enterSynthetic(pos, assertDisabledSym, container.members());
2024 JCClassDecl containerDef = classDef(container);
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Component.cpp949 AwtWindow* container = GetContainer(); local
951 if (container != NULL && container == parent) {
952 container->SubtractInsetPoint(x, y);

Completed in 136 milliseconds

12345