Searched defs:ot (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/management/openmbean/
H A DTabularType.java240 boolean isAssignableFrom(OpenType<?> ot) { argument
241 if (!(ot instanceof TabularType))
243 TabularType tt = (TabularType) ot;
H A DCompositeType.java327 * @param ot the type to be tested.
329 * @return true if {@code ot} is assignable to this open type.
332 boolean isAssignableFrom(OpenType<?> ot) { argument
333 if (!(ot instanceof CompositeType))
335 CompositeType ct = (CompositeType) ot;
H A DOpenType.java362 * @param ot the type to be tested.
364 * @return true if {@code ot} is assignable to this open type.
366 boolean isAssignableFrom(OpenType<?> ot) { argument
367 return this.equals(ot);
H A DArrayType.java639 boolean isAssignableFrom(OpenType<?> ot) { argument
640 if (!(ot instanceof ArrayType<?>))
642 ArrayType<?> at = (ArrayType<?>) ot;
/openjdk7/jdk/src/share/classes/sun/management/
H A DMappedMXBeanType.java109 static synchronized MappedMXBeanType newBasicType(Class c, OpenType ot) argument
111 MappedMXBeanType mt = new BasicMXBeanType(c, ot);
/openjdk7/corba/src/share/classes/sun/rmi/rmic/iiop/
H A DIDLGenerator.java108 * @param ot the OutputType for which directory nesting is to be defined.
112 OutputType ot ) {
113 Identifier id = super.getOutputId( ot );
115 Type t = ot.getType();
116 String fName = ot.getName();
406 * @param OutputType ot One of the items returned by getOutputTypesFor(...)
412 OutputType ot,
416 Type t = ot.getType();
418 writeSequence( ot,p );
436 String fName = ot
411 writeOutputFor( OutputType ot, HashSet alreadyChecked, IndentingWriter p ) argument
1606 writeSequence( OutputType ot, IndentingWriter p) argument
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dtype.cpp1171 const TypeInt *ot = old->is_int(); local
1174 if( _lo == ot->_lo && _hi == ot->_hi )
1178 if( _lo <= ot->_lo && _hi >= ot->_hi ) {
1181 if( _widen > ot->_widen ) return this;
1183 if (ot->_lo == ot->_hi) return this;
1212 if ( ot->_lo <= _lo && ot
1225 const TypeInt* ot = old->isa_int(); local
1427 const TypeLong *ot = old->is_long(); local
1484 const TypeLong* ot = old->isa_long(); local
[all...]

Completed in 2363 milliseconds