Searched refs:existing (Results 1 - 25 of 41) sorted by relevance

12

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJClassAlreadyExistsException.java38 private final JDefinedClass existing; field in class:JClassAlreadyExistsException
41 this.existing = _existing;
45 * Gets a reference to the existing {@link JDefinedClass}.
51 return existing;
/openjdk7/corba/src/share/classes/sun/rmi/rmic/iiop/
H A DNCClassType.java72 Type existing = getType(theType,stack);
74 if (existing != null) {
76 if (!(existing instanceof NCClassType)) return null; // False hit.
80 return (NCClassType) existing;
H A DNCInterfaceType.java68 Type existing = getType(theType,stack);
70 if (existing != null) {
72 if (!(existing instanceof NCInterfaceType)) return null; // False hit.
76 return (NCInterfaceType) existing;
H A DSpecialClassType.java76 Type existing = getType(typeKey,stack);
78 if (existing != null) {
80 if (!(existing instanceof SpecialClassType)) return null; // False hit.
84 return (SpecialClassType) existing;
H A DImplementationType.java75 Type existing = getType(theType,stack);
77 if (existing != null) {
79 if (!(existing instanceof ImplementationType)) return null; // False hit.
83 return (ImplementationType) existing;
274 MemberDefinition existing = existingMethod.getMemberDefinition();
278 if (implMethodSig.equals(existing.toString())) {
H A DAbstractType.java73 Type existing = getType(theType,stack);
75 if (existing != null) {
77 if (!(existing instanceof AbstractType)) return null; // False hit.
81 return (AbstractType) existing;
H A DArrayType.java84 Type existing = getType(theType,stack);
85 if (existing != null) {
87 if (!(existing instanceof ArrayType)) return null; // False hit.
91 return (ArrayType) existing;
H A DPrimitiveType.java67 Type existing = getType(type,stack);
69 if (existing != null) {
71 if (!(existing instanceof PrimitiveType)) return null; // False hit.
75 return (PrimitiveType) existing;
H A DRemoteType.java74 Type existing = getType(theType,stack);
76 if (existing != null) {
78 if (!(existing instanceof RemoteType)) return null; // False hit.
82 return (RemoteType) existing;
H A DSpecialInterfaceType.java80 Type existing = getType(type,stack);
82 if (existing != null) {
84 if (!(existing instanceof SpecialInterfaceType)) return null; // False hit.
88 return (SpecialInterfaceType) existing;
H A DValueType.java78 Type existing = getType(typeKey,stack);
80 if (existing != null) {
82 if (!(existing instanceof ValueType)) return null; // False hit.
86 return (ValueType) existing;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/parser/
H A DAnnotationParser.java70 * @param existing
75 * together. If there is no existing object, null will be
80 public abstract Object getResult( Object existing );
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/util/
H A DDomAnnotationParserFactory.java87 public Object getResult(Object existing) { argument
90 if(existing instanceof Element) {
92 Element prev = (Element) existing;
/openjdk7/jdk/src/share/classes/sun/nio/fs/
H A DNativeBuffers.java108 NativeBuffer existing = buffers[i];
109 if (existing.size() < buffer.size()) {
110 existing.cleaner().clean();
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsWatchService.java85 // file key (used to detect existing registrations)
311 * 5. Create or return existing key representing registration
364 WindowsWatchKey existing = fk2key.get(fk);
368 if (existing != null && watchSubtree == existing.watchSubtree()) {
369 existing.setEvents(events);
370 return existing;
409 if (existing == null) {
418 // 1. remove mapping from old completion key to existing watch key
419 // 2. release existing ke
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/util/
H A DCollisionCheckStack.java170 Object existing = data[p];
172 if(existing==o) return true;
174 if (o.equals(existing)) return true;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/parser/
H A DDefaultAnnotationParser.java55 public Object getResult( Object existing ) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/parser/state/
H A Dannotation.java48 private AnnotationImpl existing; field in class:annotation
62 this.existing = _existing;
209 if(existing!=null) e=existing.getAnnotation();
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DMXBeanLookup.java146 ObjectName existing = mxbeanToObjectName.get(mxbean);
147 if (existing != null) {
152 "MXBean already registered with name " + existing);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/bindinfo/
H A DAnnotationParserFactoryImpl.java122 public BindInfo getResult( Object existing ) {
131 if(existing!=null) {
132 BindInfo bie = (BindInfo)existing;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/generator/bean/
H A DObjectFactoryGeneratorImpl.java174 CElementInfo existing = elementFactoryNames.put(ei.getSqueezedName(),ei);
175 if( existing!=null ) {
176 outline.getErrorReceiver().error(existing.getLocator(),
320 ClassOutlineImpl existing = valueFactoryNames.put(name,cc);
321 if( existing!=null ) {
322 outline.getErrorReceiver().error(existing.target.getLocator(),
/openjdk7/jdk/src/share/classes/java/util/
H A DPropertyPermission.java491 PropertyPermission existing = (PropertyPermission) perms.get(propName);
493 if (existing != null) {
494 int oldMask = existing.getMask();
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DParser.java171 Object existing = _variableScope.get(var.getName());
172 if (existing != null) {
173 if (existing instanceof Stack) {
174 Stack stack = (Stack)existing;
177 else if (existing instanceof VariableBase) {
179 stack.push(existing);
190 Object existing = _variableScope.get(name);
191 if (existing instanceof Stack) {
192 Stack stack = (Stack)existing;
200 Object existing
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DStackFrameImpl.java150 LocalVariable existing = (LocalVariable)map.get(name);
151 if ((existing == null) ||
152 variable.hides(existing)) {
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DStackFrameImpl.java165 LocalVariable existing = map.get(name);
166 if ((existing == null) ||
167 ((LocalVariableImpl)variable).hides(existing)) {

Completed in 170 milliseconds

12