Searched refs:ot (Results 1 - 14 of 14) sorted by relevance

/openjdk7/jdk/test/java/io/File/
H A DSetLastModified.java62 long ot, t;
82 ot = d2.lastModified();
83 if (ot != 0) {
86 d2.setLastModified(ot);
111 ot = f.lastModified();
/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 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 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 DArrayType.java639 boolean isAssignableFrom(OpenType<?> ot) { argument
640 if (!(ot instanceof ArrayType<?>))
642 ArrayType<?> at = (ArrayType<?>) ot;
/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...]
/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/langtools/src/share/classes/com/sun/tools/javac/util/
H A DRichDiagnosticFormatter.java470 Type ot = t.getOriginalType();
471 if (ot != null)
472 visit(ot);
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXAtom.java780 XAtom ot = (XAtom)o;
781 return (atom == ot.atom && display == ot.display);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DSymbol.java1172 Type ot = types.memberType(owner.type, other);
1173 if (types.isSubSignature(mt, ot)) {
1176 if (types.returnTypeSubstitutable(mt, ot))
1190 Type ot = types.memberType(origin.type, other);
1192 types.isSubSignature(mt, ot) &&
1193 (!checkResult || types.resultSubtype(mt, ot, Warner.noWarnings));
/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/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DLower.java1594 VarSymbol ot = ots.head;
1595 JCExpression tree = access(make.at(pos).Ident(ot));
1596 TypeSymbol otc = ot.type.tsym;
1607 ot = ots.head;
1608 } while (ot.owner != otc);
1614 tree = access(make.at(pos).Select(tree, ot));
1615 otc = ot.type.tsym;
1652 VarSymbol ot = ots.head;
1653 JCExpression tree = access(make.at(pos).Ident(ot));
1654 TypeSymbol otc = ot
[all...]
H A DCheck.java1427 Type ot = types.memberType(origin.type, other);
1433 List<Type> otvars = ot.getTypeArguments();
1435 Type otres = types.subst(ot.getReturnType(), otvars, mtvars);
1439 types.returnTypeSubstitutable(mt, ot, otres, overrideWarner);
1461 List<Type> otthrown = types.subst(ot.getThrownTypes(), otvars, mtvars);
/openjdk7/jdk/test/javax/management/openmbean/
H A DConstraintTest.java232 OpenType<?> ot = info.getOpenType();

Completed in 336 milliseconds