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

123456789

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/
H A DJavaMethodImpl.java69 /*package*/ final AbstractSEIModelImpl owner; field in class:JavaMethodImpl
73 * @param owner
78 public JavaMethodImpl(AbstractSEIModelImpl owner, Method method, Method seiMethod) { argument
79 this.owner = owner;
110 return owner;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/wsdl/
H A DWSDLBoundPortTypeImpl.java55 private final @NotNull WSDLModelImpl owner; field in class:WSDLBoundPortTypeImpl
69 public WSDLBoundPortTypeImpl(XMLStreamReader xsr,@NotNull WSDLModelImpl owner, QName name, QName portTypeName) { argument
71 this.owner = owner;
74 owner.addBinding(this);
82 return owner;
200 portType = owner.getPortType(portTypeName);
208 op.freeze(owner);
212 owner.finalizeRpcLitBinding(this);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DLabel.java303 * @param owner the code writer that calls this method.
313 final MethodWriter owner,
373 * @param owner the code writer that calls this method.
387 final MethodWriter owner,
443 return !ClassReader.FRAMES || frame == null ? this : frame.owner;
312 put( final MethodWriter owner, final ByteVector out, final int source, final boolean wideOffset) argument
386 resolve( final MethodWriter owner, final int position, final byte[] data) argument
H A DMethodVisitor.java259 * @param owner the internal name of the field's owner class (see {@link
264 void visitFieldInsn(int opcode, String owner, String name, String desc); argument
273 * @param owner the internal name of the method's owner class (see {@link
278 void visitMethodInsn(int opcode, String owner, String name, String desc); argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/
H A DElementDecl.java52 public ElementDecl( PatcherManager reader, SchemaDocumentImpl owner, argument
62 super(owner,_annon,_loc,fa,_tns,_name,_anonymous);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/parser/state/
H A DattributeUses.java47 private AttributesHolder owner; field in class:attributeUses
69 this.owner = _owner;
79 owner.setWildcard(wildcard);
89 owner.addAttGroup(new DelayedRef.AttGroup(
101 owner.addProhibitedAttribute(attDeclName);
103 owner.addAttributeUse(attDeclName,
H A DcomplexType_complexContent_body.java46 private AttributesHolder owner; field in class:complexType_complexContent_body
60 this.owner = _owner;
87 NGCCHandler h = new attributeUses(this, super._source, $runtime, 674, owner);
91 NGCCHandler h = new attributeUses(this, super._source, $runtime, 674, owner);
129 NGCCHandler h = new attributeUses(this, super._source, $runtime, 674, owner);
160 NGCCHandler h = new attributeUses(this, super._source, $runtime, 674, owner);
191 NGCCHandler h = new attributeUses(this, super._source, $runtime, 674, owner);
219 NGCCHandler h = new attributeUses(this, super._source, $runtime, 674, owner);
/openjdk7/jdk/test/java/awt/Focus/NonFocusableWindowTest/
H A DNoEventsTest.java202 public TestWindow(int row, int col, boolean focusable, Frame owner) { argument
203 super(owner);
225 public TestDialog(int row, int col, boolean focusable, boolean resizable, Frame owner) { argument
226 super(owner);
407 // Check that Window owner is focusable
/openjdk7/jdk/test/sun/management/windows/
H A Drevokeall.c30 * Simple Windows utility to remove all non-owner access to a given
293 SID* owner; local
302 * owner SID, and the DACL.
308 if (!GetSecurityDescriptorOwner(sd, &owner, &defaulted)) {
312 str = getSIDString(owner);
314 printf("owner: %s\n", str);
335 * matches the owner - if not we remove the ACE from the ACL
362 if (!EqualSid(owner, sid)) {
395 * No changes - only owner has access
452 printf("Revoking all non-owner acces
[all...]
/openjdk7/jdk/src/share/classes/sun/security/acl/
H A DAclImpl.java58 public AclImpl(Principal owner, String name) { argument
59 super(owner);
61 setName(owner, name);
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXMSelection.java43 * If owner changes, the ownerChanged of the XMSelectionListener
46 * None if the owner is gone.
125 void resetOwner(long owner, final int screen) { argument
130 setOwner(owner, screen);
131 if (log.isLoggable(PlatformLogger.FINE)) log.fine("New Selection Owner for screen " + screen + " = " + owner );
132 XlibWrapper.XSelectInput(display, owner, XConstants.StructureNotifyMask | eventMask);
133 XToolkit.addEventDispatcher(owner,
160 long owner = XlibWrapper.XGetSelectionOwner(display, atom.getAtom());
161 if (owner != 0) {
162 setOwner(owner, scree
285 setOwner(long owner, int screen) argument
332 dispatchOwnerChangedEvent(XEvent ev, int screen, long owner, long data, long timestamp) argument
[all...]
H A DXSystemTrayPeer.java61 log.fine(" check if system tray is available. selection owner: " + selection_owner);
88 public void selectionChanged(int screen, XMSelection sel, long owner, XPropertyEvent event) { argument
109 log.fine(" send SYSTEM_TRAY_REQUEST_DOCK message to owner: " + selection_owner);
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixFileAttributeViews.java123 private static final String OWNER_NAME = "owner";
186 builder.add(OWNER_NAME, attrs.owner());
254 public void setOwner(UserPrincipal owner) argument
257 if (owner == null)
258 throw new NullPointerException("'owner' is null");
259 if (!(owner instanceof UnixUserPrincipals.User))
261 if (owner instanceof UnixUserPrincipals.Group)
262 throw new IOException("'owner' parameter can't be a group");
263 int uid = ((UnixUserPrincipals.User)owner).uid();
269 return readAttributes().owner();
[all...]
H A DUnixFileAttributes.java53 private volatile UserPrincipal owner; field in class:UnixFileAttributes
171 public UserPrincipal owner() { method in class:UnixFileAttributes
172 if (owner == null) {
174 if (owner == null) {
175 owner = UnixUserPrincipals.fromUid(st_uid);
179 return owner;
H A DUnixSecureDirectoryStream.java532 return readAttributes().owner();
536 public void setOwner(UserPrincipal owner) argument
539 if (!(owner instanceof UnixUserPrincipals.User))
541 if (owner instanceof UnixUserPrincipals.Group)
542 throw new IOException("'owner' parameter can't be a group");
543 int uid = ((UnixUserPrincipals.User)owner).uid();
/openjdk7/langtools/test/tools/javac/scope/
H A DStarImportTest.java280 // owner should be a package
281 assert (sym.owner.kind == PCK);
283 // determine new owner
285 // log(sym + " owner: " + sym.owner, sym.owner.members());
286 Scope.Entry outerEntry = sym.owner.members().lookup(outerName);
291 sym.owner.members().remove(sym);
296 sym.owner = outer;
303 ClassSymbol createClass(Name name, Symbol owner) { argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/objects/
H A DXObject.java740 public void callVisitors(ExpressionOwner owner, XPathVisitor visitor) argument
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJColorChooser.java613 public ColorChooserDialog(Dialog owner, String title, boolean modal, argument
617 super(owner, title, modal);
621 public ColorChooserDialog(Frame owner, String title, boolean modal, argument
625 super(owner, title, modal);
H A DJDialog.java67 * on a different screen device than its owner. See {@link java.awt.Frame} for
135 * {@code Frame} owner. A shared, hidden frame will be
136 * set as the owner of the dialog.
158 * as its owner and an empty title. If {@code owner}
160 * owner of the dialog.
171 * @param owner the {@code Frame} from which the dialog is displayed
177 public JDialog(Frame owner) { argument
178 this(owner, false);
183 * {@code Frame} as its owner
204 JDialog(Frame owner, boolean modal) argument
231 JDialog(Frame owner, String title) argument
270 JDialog(Frame owner, String title, boolean modal) argument
320 JDialog(Frame owner, String title, boolean modal, GraphicsConfiguration gc) argument
346 JDialog(Dialog owner) argument
372 JDialog(Dialog owner, boolean modal) argument
392 JDialog(Dialog owner, String title) argument
420 JDialog(Dialog owner, String title, boolean modal) argument
458 JDialog(Dialog owner, String title, boolean modal, GraphicsConfiguration gc) argument
487 JDialog(Window owner) argument
523 JDialog(Window owner, ModalityType modalityType) argument
552 JDialog(Window owner, String title) argument
590 JDialog(Window owner, String title, Dialog.ModalityType modalityType) argument
635 JDialog(Window owner, String title, Dialog.ModalityType modalityType, GraphicsConfiguration gc) argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DDialog.java68 * A dialog may have another window as its owner when it's constructed. When
69 * the owner window of a visible dialog is minimized, the dialog will
70 * automatically be hidden from the user. When the owner window is subsequently
74 * on a different screen device than its owner. See {@link java.awt.Frame} for
80 * as their owner. See <a href="doc-files/Modality.html">AWT Modality</a>
155 * A document is a top-level window without an owner. It may contain child
158 * document, its root can be found as the top-nearest window without an owner.
318 * the specified owner <code>Frame</code> and an empty title.
320 * @param owner the owner o
331 Dialog(Frame owner) argument
357 Dialog(Frame owner, boolean modal) argument
378 Dialog(Frame owner, String title) argument
408 Dialog(Frame owner, String title, boolean modal) argument
441 Dialog(Frame owner, String title, boolean modal, GraphicsConfiguration gc) argument
459 Dialog(Dialog owner) argument
479 Dialog(Dialog owner, String title) argument
509 Dialog(Dialog owner, String title, boolean modal) argument
545 Dialog(Dialog owner, String title, boolean modal, GraphicsConfiguration gc) argument
570 Dialog(Window owner) argument
596 Dialog(Window owner, String title) argument
629 Dialog(Window owner, ModalityType modalityType) argument
664 Dialog(Window owner, String title, ModalityType modalityType) argument
715 Dialog(Window owner, String title, ModalityType modalityType, GraphicsConfiguration gc) argument
[all...]
/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DPlatformWindow.java45 public void initialize(Window target, LWWindowPeer peer, PlatformWindow owner); argument
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCPlatformEmbeddedFrame.java58 public void initialize(Window target, final LWWindowPeer peer, PlatformWindow owner) { argument
H A DCViewPlatformEmbeddedFrame.java53 public void initialize(Window target, final LWWindowPeer peer, PlatformWindow owner) { argument
/openjdk7/hotspot/src/share/vm/runtime/
H A Dvframe.hpp240 // 1) the owner of the monitor
246 oop _owner_klass; // klass if owner was scalar replaced
251 MonitorInfo(oop owner, BasicLock* lock, bool eliminated, bool owner_is_scalar_replaced) { argument
253 _owner = owner;
258 _owner_klass = owner;
265 oop owner() const { function in class:MonitorInfo
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJDefinedClass.java152 protected JCodeModel owner() {
153 return JDefinedClass.this.owner();
158 this(mods, name, parent, parent.owner(), classTypeval);
165 JCodeModel owner,
168 this(mods, name, null, owner);
175 JCodeModel owner) {
176 this (mods,name,parent,owner,ClassType.CLASS);
192 JCodeModel owner,
194 super(owner);
267 return _extends(owner()
164 JDefinedClass( JCodeModel owner, int mods, String name) argument
171 JDefinedClass( int mods, String name, JClassContainer parent, JCodeModel owner) argument
188 JDefinedClass( int mods, String name, JClassContainer parent, JCodeModel owner, ClassType classTypeVal) argument
[all...]

Completed in 53 milliseconds

123456789