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

123456789

/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/operations/
H A DVariable.java274 com.sun.org.apache.xpath.internal.ExpressionNode owner = getExpressionOwner();
276 if (null != owner && owner instanceof com.sun.org.apache.xalan.internal.templates.ElemTemplateElement)
280 (com.sun.org.apache.xalan.internal.templates.ElemTemplateElement) owner;
355 public void callVisitors(ExpressionOwner owner, XPathVisitor visitor) argument
357 visitor.visitVariableRef(owner, this);
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/patterns/
H A DUnionPattern.java177 public void callVisitors(ExpressionOwner owner, XPathVisitor visitor) argument
179 visitor.visitUnionPattern(owner, this);
/openjdk7/jdk/src/share/classes/java/text/
H A DCollationElementIterator.java124 CollationElementIterator(String sourceText, RuleBasedCollator owner) { argument
125 this.owner = owner;
126 ordering = owner.getTables();
129 CollatorUtilities.toNormalizerMode(owner.getDecomposition());
142 CollationElementIterator(CharacterIterator sourceText, RuleBasedCollator owner) { argument
143 this.owner = owner;
144 ordering = owner.getTables();
146 CollatorUtilities.toNormalizerMode(owner
776 private RuleBasedCollator owner; field in class:CollationElementIterator
[all...]
/openjdk7/hotspot/src/share/vm/code/
H A DdebugInfo.cpp227 MonitorValue::MonitorValue(ScopeValue* owner, Location basic_lock, bool eliminated) { argument
228 _owner = owner;
248 owner()->print_on(st);
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/IPAcl/
H A DSimpleNode.java120 public void buildAclEntries(PrincipalImpl owner, AclImpl acl) { argument
125 n.buildAclEntries(owner, acl);
H A DSnmpAcl.java73 * based on IP addresses. The ACL will take the given owner name.
74 * The current IP address will be the owner of the ACL.
88 * based on IP addresses. The ACL will take the given owner name.
89 * The current IP address will be the owner of the ACL.
103 owner = new PrincipalImpl();
105 acl = new AclImpl(owner,Owner);
106 AclEntry ownEntry = new AclEntryImpl(owner);
109 acl.addEntry(owner,ownEntry);
114 "Should never get NotOwnerException as the owner " +
225 * @exception NotOwnerException If the principal attempting the reset is not an owner o
485 private PrincipalImpl owner = null; field in class:SnmpAcl
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJClass.java74 public final JCodeModel owner() { return _owner; } method in class:JClass
166 if( this==_package().owner().ref(Object.class) ) return true;
228 return getBaseClass(owner().ref(baseType));
235 arrayClass = new JArrayClass(owner(),this);
247 return narrow(owner().ref(clazz));
253 r[i] = owner().ref(clazz[i]);
H A DJMethod.java157 return _throws(outer.owner().ref(exception));
192 return param(mods, outer.owner()._ref(type), name);
196 return param(outer.owner()._ref(type), name);
203 return varParam(outer.owner()._ref(type),name);
263 return annotate(owner().ref(clazz));
395 jdoc = new JDocComment(owner());
471 protected JCodeModel owner() { method in class:JMethod
472 return outer.owner();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/model/java/
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...]
H A DJavaStructureType.java40 public JavaStructureType(String name, boolean present, Object owner) { argument
42 this.owner = owner;
156 return owner;
159 public void setOwner(Object owner) { argument
162 this.owner = owner;
173 private Object owner; field in class:JavaStructureType
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/generator/bean/field/
H A DAbstractField.java389 public final FieldOutline owner() { method in class:AbstractField.Accessor
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/dtd/
H A DElement.java70 private final TDTDReader owner; field in class:Element
118 public Element(TDTDReader owner,String name) { argument
119 this.owner = owner;
155 owner.getOrCreateElement(e.name).mustBeClass = true;
168 BIElement e = owner.bindInfo.element(name);
189 BIElement e = owner.bindInfo.element(name);
211 String className = owner.model.getNameConverter().toClassName(name);
214 return new CClassInfo(owner.model,owner
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/bindinfo/
H A DBIConversion.java84 * @param owner
90 public abstract TypeUse getTypeUse( XSSimpleType owner );
112 public TypeUse getTypeUse(XSSimpleType owner) { argument
122 * owner of the token.
154 public TypeUse getTypeUse(XSSimpleType owner) { argument
163 JDefinedClass adapter = generateAdapter(parseMethodFor(owner),printMethodFor(owner),owner);
174 private JDefinedClass generateAdapter(String parseMethod, String printMethod,XSSimpleType owner) { argument
246 inv = JExpr.direct(printMethod+"(("+findBaseConversion(owner)
255 printMethodFor(XSSimpleType owner) argument
267 parseMethodFor(XSSimpleType owner) argument
285 getConversionMethod(String methodPrefix, XSSimpleType owner) argument
292 findBaseConversion(XSSimpleType owner) argument
324 getTypeUse(XSSimpleType owner) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/
H A DValueListBeanInfoImpl.java55 public ValueListBeanInfoImpl(JAXBContextImpl owner, Class arrayType) throws JAXBException { argument
56 super(owner, null, arrayType, false, true, false);
58 this.xducer = owner.getBeanInfo(arrayType.getComponentType(),true).getTransducer();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/sei/
H A DSEIStub.java62 public SEIStub(WSServiceDelegate owner, BindingImpl binding, SOAPSEIModel seiModel, Tube master, WSEndpointReference epr) { argument
63 super(owner, master, binding, seiModel.getPort(), seiModel.getPort().getAddress(), epr);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/wsdl/
H A DWSDLOperationImpl.java54 private final WSDLPortType owner; field in class:WSDLOperationImpl
56 public WSDLOperationImpl(XMLStreamReader xsr,WSDLPortTypeImpl owner, QName name) { argument
61 this.owner = owner;
117 return owner;
122 return owner.getName();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DClassVisitor.java115 * @param owner internal name of the enclosing class of the class.
123 void visitOuterClass(String owner, String name, String desc); argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/
H A DModelGroupDeclImpl.java43 public ModelGroupDeclImpl( SchemaDocumentImpl owner, argument
48 super(owner,_annon,_loc,_fa,_targetNamespace,_name,false);
H A DModelGroupImpl.java47 public ModelGroupImpl( SchemaDocumentImpl owner, AnnotationImpl _annon, Locator _loc, ForeignAttributesImpl _fa, argument
50 super(owner,_annon,_loc,_fa);
H A DWildcardImpl.java51 protected WildcardImpl( SchemaDocumentImpl owner, AnnotationImpl _annon, Locator _loc, ForeignAttributesImpl _fa, int _mode ) { argument
52 super(owner,_annon,_loc,_fa);
60 public WildcardImpl union( SchemaDocumentImpl owner, WildcardImpl rhs ) { argument
62 return new Any(owner,null,null,null,mode);
68 return new Finite(owner,null,null,null,values,mode);
74 return new Other(owner,null,null,null, ((Other)this).otherNamespace, mode );
77 return new Other(owner,null,null,null, "", mode );
90 return new Any(owner,null,null,null,mode);
92 return new Other(owner,null,null,null,o.otherNamespace,mode);
98 public Any( SchemaDocumentImpl owner, AnnotationImp argument
114 Other( SchemaDocumentImpl owner, AnnotationImpl _annon, Locator _loc, ForeignAttributesImpl _fa, String otherNamespace, int _mode ) argument
137 Finite( SchemaDocumentImpl owner, AnnotationImpl _annon, Locator _loc, ForeignAttributesImpl _fa, Set<String> ns, int _mode ) argument
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_mgrsel.c46 void (*callback_owner)(int, Window, long *, void *); /* owner changes */
94 * If owner changes, the callback_owner will be called with the screen
96 * None if the owner is gone.
177 Window owner; local
179 owner = awt_mgrsel_select_per_screen(per_scr_atoms[scr], extra_mask);
180 mgrsel->per_scr_owners[scr] = owner;
182 if (owner == None) {
185 DTRACE_PRINTLN2("MG: screen %d - 0x%08lx", scr, owner);
201 Window owner; local
205 owner
284 Window owner; local
[all...]
/openjdk7/jdk/src/windows/native/sun/management/
H A DFileSystemImpl.c148 * Returns pointer to the SID identifying the owner of the specified
152 SID* owner; local
155 if (!GetSecurityDescriptorOwner(sd, &owner, &defaulted)) {
159 return owner;
182 * Returns JNI_TRUE if the specified owner is the only SID will access
185 static jboolean isAccessUserOnly(JNIEnv* env, SID* owner, ACL* acl) { argument
207 * matches the owner, and check that the access is read only.
223 if (!EqualSid(owner, sid)) {
288 * From the security descriptor get the file owner and
289 * DACL. Then check if anybody but the owner ha
294 SID *owner = getFileOwner(env, sd); local
[all...]
/openjdk7/jdk/test/java/awt/Focus/ActualFocusedWindowTest/
H A DActualFocusedWindowRetaining.java42 public static Frame owner = new Frame("Test Frame"); field in class:ActualFocusedWindowRetaining
49 public static Window window1 = new TestWindow(owner, otherButton2, testButton2, 800, 200);
50 public static Window window2 = new TestWindow(owner, otherButton3, testButton3, 800, 300);
87 owner.setLayout(new FlowLayout());
88 owner.add(testButton1);
89 owner.add(otherButton1);
90 owner.pack();
91 owner.setLocation(800, 100);
92 owner.setSize(new Dimension(400, 100));
93 owner
201 TestWindow(Frame owner, Button otherButton, Button testButton, int x, int y) argument
[all...]
/openjdk7/jdk/test/java/awt/Modal/ModalDialogMultiscreenTest/
H A DModalDialogMultiscreenTest.java60 public TestDialog(Frame owner, String title, boolean modal, GraphicsConfiguration gc) { argument
61 super(owner, title, modal, gc);
/openjdk7/jdk/test/java/lang/management/ThreadMXBean/
H A DLocks.java52 private static void checkBlockedObject(Thread t, Object lock, Thread owner, argument
57 String expectedOwner = (owner != null ? owner.getName() : null);
260 expectedThreads[1] = t2.getId(); // owner of lockB blocking on lockC
261 expectedThreads[2] = mainThread.getId(); // owner of lockC
296 lock + " expected to have owner");

Completed in 57 milliseconds

123456789