Searched refs:owner (Results 1 - 25 of 336) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/sun/awt/
H A DMutex.java30 private Thread owner; field in class:Mutex
33 if (locked && Thread.currentThread() == owner) {
39 owner = Thread.currentThread();
47 } while (owner != Thread.currentThread());
51 if (Thread.currentThread() != owner) {
54 owner = null;
60 return (locked && Thread.currentThread() == owner);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/sei/
H A DMethodHandler.java41 protected final SEIStub owner; field in class:MethodHandler
43 protected MethodHandler(SEIStub owner) { argument
44 this.owner = owner;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJFieldVar.java41 private final JDefinedClass owner; field in class:JFieldVar
56 JFieldVar(JDefinedClass owner, JMods mods, JType type, String name, JExpression init) { argument
58 this.owner = owner;
64 if(owner.fields.containsKey(name))
68 owner.fields.remove(oldName);
69 owner.fields.put(name,this);
80 jdoc = new JDocComment(owner.owner());
H A DJPrimitiveType.java38 private final JCodeModel owner; field in class:JPrimitiveType
45 JPrimitiveType(JCodeModel owner, String typeName, Class<?> wrapper ) { argument
46 this.owner = owner;
48 this.wrapperClass = owner.ref(wrapper);
51 public JCodeModel owner() { return owner; } method in class:JPrimitiveType
68 arrayClass = new JArrayClass(owner,this);
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXFocusProxyWindow.java36 XWindowPeer owner; field in class:XFocusProxyWindow
38 public XFocusProxyWindow(XWindowPeer owner) { argument
41 PARENT_WINDOW, new Long(owner.getWindow()),
44 this.owner = owner;
61 return owner;
77 owner.handleFocusEvent(xev);
81 owner.handleKeyPress(xev);
85 owner.handleKeyRelease(xev);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DMonitorInfo.java31 private OopHandle owner; field in class:MonitorInfo
37 public MonitorInfo(OopHandle owner, BasicLock lock, boolean eliminated, boolean ownerIsScalarReplaced) { argument
39 this.owner = owner;
43 this.owner = null;
44 this.ownerKlass = owner;
50 public OopHandle owner() { method in class:MonitorInfo
52 return owner;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/model/java/
H A DJavaException.java36 public JavaException(String name, boolean present, Object owner) { argument
37 super(name, present, owner);
H A DJavaStructureMember.java36 public JavaStructureMember(String name, JavaType type, Object owner) { argument
37 this(name, type, owner, false);
40 Object owner, boolean isPublic) {
44 this.owner = owner;
105 return owner;
108 public void setOwner(Object owner) { argument
109 this.owner = owner;
127 private Object owner; field in class:JavaStructureMember
39 JavaStructureMember(String name, JavaType type, Object owner, boolean isPublic) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/acl/
H A DOwnerImpl.java34 * initial owner principal is configured as
41 public OwnerImpl(Principal owner) { argument
43 ownerGroup.addMember(owner);
47 * Adds an owner. Owners can modify ACL contents and can disassociate
50 * order to invoke this method. The initial owner is configured
53 * @param owner The owner that should be added to the owners list.
54 * @return true if success, false if already an owner.
58 public synchronized boolean addOwner(Principal caller, Principal owner) argument
64 ownerGroup.addMember(owner);
82 deleteOwner(Principal caller, Principal owner) argument
105 isOwner(Principal owner) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/javadoc/
H A DTypeVariable.java57 ProgramElementDoc owner(); method in interface:TypeVariable
/openjdk7/jdk/src/share/classes/java/security/acl/
H A DOwner.java34 * interface.) The initial owner Principal should be specified as an
43 * Adds an owner. Only owners can modify ACL contents. The caller
44 * principal must be an owner of the ACL in order to invoke this method.
45 * That is, only an owner can add another owner. The initial owner is
48 * @param caller the principal invoking this method. It must be an owner
51 * @param owner the owner that should be added to the list of owners.
53 * @return true if successful, false if owner i
57 addOwner(Principal caller, Principal owner) argument
81 deleteOwner(Principal caller, Principal owner) argument
93 isOwner(Principal owner) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/beans/decoder/
H A DJavaElementHandler.java33 * Typically this outer context is used to retrieve the owner of the decoder,
75 // check class for owner
102 return false; // do not use owner as object
119 * Returns the owner of the owner document handler
122 * @return the owner of the owner document handler
125 Object owner = getOwner().getOwner();
126 if ((this.type == null) || isValid(owner)) {
127 return owner;
148 isValid(Object owner) argument
[all...]
H A DElementHandler.java37 private DocumentHandler owner; field in class:ElementHandler
45 * @return the owner document handler
48 return this.owner;
53 * The owner document handler should be set after instantiation.
56 * @param owner the owner document handler
59 final void setOwner(DocumentHandler owner) { argument
60 if (owner == null) {
61 throw new IllegalArgumentException("Every element should have owner");
63 this.owner
[all...]
/openjdk7/jdk/src/share/classes/sun/rmi/transport/proxy/
H A DHttpSendInputStream.java38 HttpSendSocket owner; field in class:HttpSendInputStream
43 * @param owner the HttpSendSocket that is providing this stream
45 public HttpSendInputStream(InputStream in, HttpSendSocket owner) argument
50 this.owner = owner;
54 * Mark this stream as inactive for its owner socket, so the next time
55 * a read is attempted, the owner will be notified and a new underlying
69 in = owner.readNotify();
84 in = owner.readNotify();
97 in = owner
[all...]
H A DHttpSendOutputStream.java38 HttpSendSocket owner; field in class:HttpSendOutputStream
43 * @param owner the HttpSendSocket that is providing this stream
45 public HttpSendOutputStream(OutputStream out, HttpSendSocket owner) argument
50 this.owner = owner;
54 * Mark this stream as inactive for its owner socket, so the next time
55 * a write is attempted, the owner will be notified and a new underlying
69 out = owner.writeNotify();
84 out = owner.writeNotify();
103 owner
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/code/
H A DMonitorValue.java30 private ScopeValue owner; field in class:MonitorValue
35 // MonitorValue(ScopeValue* owner, Location basic_lock);
39 owner = ScopeValue.readFrom(stream);
43 public ScopeValue owner() { return owner; } method in class:MonitorValue
52 owner().printOn(tty);
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/IPAcl/
H A DOwnerImpl.java42 * The initial owner Principal should be specified as an
54 * Constructs an empty list of owner.
61 * Constructs a list of owner with the specified principal as first element.
63 * @param owner the principal added to the owner list.
65 public OwnerImpl (PrincipalImpl owner){ argument
67 ownerList.addElement(owner);
71 * Adds an owner. Only owners can modify ACL contents. The caller principal
72 * must be an owner of the ACL in order to invoke this method. That is, only
73 * an owner ca
83 addOwner(Principal caller, Principal owner) argument
110 deleteOwner(Principal caller, Principal owner) argument
134 isOwner(Principal owner) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/nio/fs/
H A DNativeBuffer.java42 // optional "owner" to avoid copying
44 private Object owner; field in class:NativeBuffer
79 void setOwner(Object owner) { argument
80 this.owner = owner;
84 Object owner() { method in class:NativeBuffer
85 return owner;
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/
H A DXPathVisitor.java45 * <code>boolean visitComponentType(ExpressionOwner owner, ComponentType compType)</code>.
46 * The ExpressionOwner argument is the owner of the component, and can
57 * @param owner The owner of the expression, to which the expression can
62 public boolean visitLocationPath(ExpressionOwner owner, LocPathIterator path) argument
69 * @param owner The owner of the expression, to which the expression can
74 public boolean visitUnionPath(ExpressionOwner owner, UnionPathIterator path) argument
81 * @param owner The owner o
86 visitStep(ExpressionOwner owner, NodeTest step) argument
101 visitPredicate(ExpressionOwner owner, Expression pred) argument
113 visitBinaryOperation(ExpressionOwner owner, Operation op) argument
125 visitUnaryOperation(ExpressionOwner owner, UnaryOperation op) argument
137 visitVariableRef(ExpressionOwner owner, Variable var) argument
149 visitFunction(ExpressionOwner owner, Function func) argument
161 visitMatchPattern(ExpressionOwner owner, StepPattern pattern) argument
173 visitUnionPattern(ExpressionOwner owner, UnionPattern pattern) argument
185 visitStringLiteral(ExpressionOwner owner, XString str) argument
198 visitNumberLiteral(ExpressionOwner owner, XNumber num) argument
[all...]
H A DXPathVisitable.java38 * @param owner The owner of the visitor, where that path may be
42 public void callVisitors(ExpressionOwner owner, XPathVisitor visitor); argument
/openjdk7/jdk/src/share/classes/java/beans/
H A DXMLDecoder.java70 private Object owner; field in class:XMLDecoder
91 * @param owner The owner of this stream.
94 public XMLDecoder(InputStream in, Object owner) { argument
95 this(in, owner, null);
103 * @param owner the owner of this stream.
107 public XMLDecoder(InputStream in, Object owner, ExceptionListener exceptionListener) { argument
108 this(in, owner, exceptionListener, null);
117 * @param owner th
126 XMLDecoder(InputStream in, Object owner, ExceptionListener exceptionListener, ClassLoader cl) argument
161 XMLDecoder(InputSource is, Object owner, ExceptionListener el, ClassLoader cl) argument
262 setOwner(Object owner) argument
299 createHandler(Object owner, ExceptionListener el, ClassLoader cl) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
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/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DNodeListCache.java56 NodeListCache(ParentNode owner) { argument
57 fOwner = owner;
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/transforms/implementations/
H A DFuncHereContext.java54 * > and supplied the Node which contains the xpath string as "owner". Question:
55 * > Is this the correct use of the owner object? It works, but I don't know
58 * Philosophically it's fine. The owner is the TransformerImpl if XPath is
81 * @param owner
83 public FuncHereContext(Node owner) { argument
84 super(owner);
90 * @param owner
93 public FuncHereContext(Node owner, XPathContext xpathContext) { argument
95 super(owner);
109 * @param owner
112 FuncHereContext(Node owner, CachedXPathAPI previouslyUsed) argument
131 FuncHereContext(Node owner, DTMManager dtmManager) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/
H A DTypeRefImpl.java40 protected final ElementPropertyInfoImpl<TypeT,ClassDeclT,?,?> owner; field in class:TypeRefImpl
45 public TypeRefImpl(ElementPropertyInfoImpl<TypeT, ClassDeclT, ?, ?> owner, QName elementName, TypeT type, boolean isNillable, String defaultValue) { argument
46 this.owner = owner;
51 assert owner!=null;
81 ref = owner.parent.builder.getTypeInfo(type,owner);
86 return owner;

Completed in 355 milliseconds

1234567891011>>