Searched defs:owner (Results 201 - 213 of 213) sorted by relevance

123456789

/openjdk7/jdk/src/share/classes/java/awt/
H A DWindow.java70 * owner when it's constructed.
107 * Window w = new Window(Window owner, GraphicsConfiguration gc);
443 final WeakReference<Window> owner; field in class:Window.WindowDisposerRecord
447 owner = new WeakReference<Window>(victim.getOwner());
452 Window parent = owner.get();
541 * <code>Frame</code> as its owner. The window will not be focusable
542 * unless its owner is showing on the screen.
550 * @param owner the <code>Frame</code> to act as owner or <code>null</code>
551 * if this window has no owner
561 Window(Frame owner) argument
593 Window(Window owner) argument
629 Window(Window owner, GraphicsConfiguration gc) argument
634 ownedInit(Window owner) argument
[all...]
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCPlatformWindow.java208 protected CPlatformWindow owner; field in class:CPlatformWindow
228 this.owner = (CPlatformWindow)_owner;
421 if (owner != null) {
422 CWrapper.NSWindow.removeChildWindow(owner.getNSWindowPtr(), getNSWindowPtr());
539 if (owner != null && owner.isVisible()) {
540 CWrapper.NSWindow.removeChildWindow(owner.getNSWindowPtr(), nsWindowPtr);
603 if (owner != null && owner.isVisible()) {
604 CWrapper.NSWindow.addChildWindow(owner
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiEnvBase.cpp640 // see if owner of the monitor is our object
641 if (mi->owner() != NULL && mi->owner() == hobj()) {
761 oop obj = mi->owner();
960 // first derive the object's owner and entry_count (if any)
969 address owner = NULL; local
977 owner = (address)mark->locker(); // save the address of the Lock word
979 // implied else: no owner
984 // The owner field of a heavyweight monitor may be NULL for no
985 // owner,
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Dframe.cpp1102 oop owner = ((oop*) sp())[byte_offset / wordSize]; local
1103 assert( Universe::heap()->is_in(owner), "bad receiver" );
1104 return owner;
1421 void FrameValues::describe(int owner, intptr_t* location, const char* description, int priority) { argument
1424 fv.owner = owner;
1437 prev.owner = -1;
1440 if (fv.owner == -1) continue;
1441 if (prev.owner == -1) {
1446 if (fv.owner !
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DLower.java207 /** The owner of the local class.
209 Symbol owner; field in class:Lower.FreeVarCollector
215 /** The list of owner's variables accessed from within the local class,
222 this.owner = clazz.owner;
246 /** If tree refers to a variable in owner of local class, add it to
257 while (sym != null && sym.owner != owner)
259 if (sym != null && sym.owner == owner) {
566 makeEmptyClass(long flags, ClassSymbol owner) argument
1346 freevarDefs(int pos, List<VarSymbol> freevars, Symbol owner) argument
1367 outerThisName(Type type, Symbol owner) argument
1384 outerThisDef(int pos, Symbol owner) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DClassReader.java485 ClassSymbol owner = readClassSymbol(getChar(index + 1));
487 poolObj[i] = new VarSymbol(0, nt.name, nt.type, owner);
492 ClassSymbol owner = readClassSymbol(getChar(index + 1));
494 poolObj[i] = new MethodSymbol(0, nt.name, nt.type, owner);
873 // currentOwner.owner.type.getTypeArguments()
875 // we don't know for sure if this owner is correct. It could
1160 sym.owner.members().remove(sym);
1173 self.owner = m != null ? m : c;
1177 self.fullname = ClassSymbol.formFullName(self.name, self.owner);
1295 Code readCode(Symbol owner) { argument
2053 defineClass(Name name, Symbol owner) argument
2064 enterClass(Name name, TypeSymbol owner) argument
2356 enterPackage(Name name, PackageSymbol owner) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/tree/
H A DTreeMaker.java539 : Select(QualIdent(sym.owner), sym);
581 /** Create a tree representing `super', given its type and owner.
583 public JCIdent Super(Type t, TypeSymbol owner) { argument
584 return Ident(new VarSymbol(FINAL, names._super, t, owner));
605 Type t = ctor.owner.erasure(types);
632 JCExpression clazz = outer.tag == CLASS && t.tsym.owner.kind == TYP
810 /** Create a value parameter tree from its name, type, and owner.
812 public JCVariableDecl Param(Name name, Type argtype, Symbol owner) { argument
813 return VarDef(new VarSymbol(0, name, argtype, owner), null);
817 * their types and an their owner
819 Params(List<Type> argtypes, Symbol owner) argument
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_MToolkit.c802 /* if focus owner is null, redirect key events to focused window */
1197 // Returns a local ref to a decorated owner of the target,
1225 /* the owner of a Window is in its parent field */
1355 // Window which contains focus owner when focus proxy is enabled
1357 // Window which works as proxy for input events for real focus owner.
2377 * Read _XSETTINGS_SETTINGS property from _XSETTINGS selection owner
2381 awt_xsettings_update(int scr, Window owner, void *cookie) argument
2400 DTRACE_PRINTLN2("XS: update screen %d, owner 0x%08lx",
2401 scr, owner);
2429 status = XGetWindowProperty(dpy, owner,
2537 awt_xsettings_owner_callback(int scr, Window owner, long *data_unused, void *cookie) argument
[all...]
/openjdk7/jdk/src/solaris/native/sun/xawt/
H A DXlibWrapper.c1621 jlong owner, jlong time) {
1623 XSetSelectionOwner((Display*)jlong_to_ptr(display), selection, owner, time);
1619 Java_sun_awt_X11_XlibWrapper_XSetSelectionOwner(JNIEnv *env, jclass clazz, jlong display, jlong selection, jlong owner, jlong time) argument
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Window.cpp524 GetHWnd(), // owner
719 // Retrive the owner of the warning window.
1136 void AwtWindow::InitOwner(AwtWindow *owner) argument
1138 DASSERT(owner != NULL);
1139 while (owner != NULL && owner->IsSimpleWindow()) {
1141 HWND ownerOwnerHWND = ::GetWindow(owner->GetHWnd(), GW_OWNER);
1143 owner = NULL;
1146 owner = (AwtWindow *)AwtComponent::GetComponent(ownerOwnerHWND);
1148 m_owningFrameDialog = (AwtFrame *)owner;
1617 AwtFrame *owner = GetOwningFrameOrDialog(); local
1667 AwtFrame *owner = (AwtFrame*)AwtComponent::GetComponent(hwndOwner); local
2029 AwtFrame *owner = GetOwningFrameOrDialog(); // NULL for Frame and Dialog local
2496 AwtWindow* owner = (AwtWindow *)AwtComponent::GetComponent(hOwner); local
2517 AwtWindow* owner = (AwtWindow*)lParam; local
[all...]
H A Dawt_Component.cpp1862 // transient windows shouldn't change the owner window's position in the z-order
2364 AwtWindow * owner = (AwtWindow*)GetComponent(GetTopLevelParentForWindow(GetHWnd())); local
2365 if (AwtWindow::GetGrabbedWindow() != NULL && owner != NULL) {
2366 if (!AwtWindow::GetGrabbedWindow()->IsOneOfOwnersOf(owner)) {
4053 AwtFrame *owner = window->GetOwningFrameOrDialog(); local
4054 if (owner != 0) {
4055 return owner->GetProxyFocusOwner();
4288 //6190728. Shouldn't draw selection field (edit control) of an owner-drawn combo box.
4297 * (edit control) of an owner-drawn combo box while unfocusable
4811 * if focus owner i
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXlibWrapper.java461 long owner, long time);
460 XSetSelectionOwner(long display, long selection, long owner, long time) argument
/openjdk7/jdk/src/share/javavm/export/
H A Djvmti.h610 jthread owner; member in struct:_jvmtiMonitorUsage

Completed in 160 milliseconds

123456789