Searched defs:second (Results 1 - 25 of 43) sorted by relevance

12

/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/copyobject/
H A DFallbackObjectCopierImpl.java32 * falls back and tries a second ObjectCopier.
37 private ObjectCopier second ; field in class:FallbackObjectCopierImpl
40 ObjectCopier second )
43 this.second = second ;
52 return second.copy( src ) ;
/openjdk7/jdk/test/java/lang/ThreadGroup/
H A DStop.java37 private static final Thread second = new Thread(group, new Stop()); field in class:Stop
66 second.start();
77 // Check that the second thread is terminated when the
79 boolean failed = second.isAlive();
83 second.stop();
H A DSuspend.java36 private static final Thread second = new Thread(group, new Suspend()); field in class:Suspend
43 if (second.isAlive()) {
57 second.start();
60 while (!first.isAlive() || !second.isAlive()) {
69 // Increment of the count indicates that the second thread is still running
72 second.stop();
/openjdk7/jdk/test/java/rmi/transport/pinLastArguments/
H A DPinLastArguments.java28 * second and subsequent attempts) when system assertions are enabled,
48 void ping(Object first, Object second) throws RemoteException; argument
53 public void ping(Object first, Object second) { argument
54 System.err.println("ping invoked: " + first + ", " + second);
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/resolver/
H A DCompositeResolverImpl.java35 private Resolver second ; field in class:CompositeResolverImpl
37 public CompositeResolverImpl( Resolver first, Resolver second )
40 this.second = second ;
47 result = second.resolve( name ) ;
55 result.addAll( second.list() ) ;
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/orb/
H A DStringPair.java29 private String second ; field in class:StringPair
42 second.equals( other.second )) ;
47 return first.hashCode() ^ second.hashCode() ;
50 public StringPair( String first, String second )
53 this.second = second ;
63 return second ;
/openjdk7/jdk/test/com/sun/jdi/
H A DCountEvent.java43 static CountEventTarg second = new CountEventTarg(); field in class:CountEventTarg
52 second.go();
H A DInstTarg.java27 static InstTarg second = new InstTarg(); field in class:InstTarg
36 second.go();
H A DInstanceFilter.java42 static InstanceFilterTarg second = new InstanceFilterTarg(); field in class:InstanceFilterTarg
51 second.go();
135 Field field = targetClass.fieldByName("second");
/openjdk7/langtools/test/tools/javac/api/
H A DTestJavacTask_Lock.java72 for (MethodKind second: MethodKind.values()) {
73 test(first, second);
81 void test(MethodKind first, MethodKind second) { argument
82 System.err.println("test: " + first + ", " + second);
87 File tmpDir = new File(first + "_" + second);
94 second.test(t);
/openjdk7/jdk/src/share/classes/java/sql/
H A DTime.java41 * given values for the hour, minute, and second.
51 * @param second 0 to 59
57 public Time(int hour, int minute, int second) { argument
58 super(70, 0, 1, hour, minute, second);
92 int second;
105 second = Integer.parseInt(s.substring(secondColon+1));
110 return new Time(hour, minute, second);
121 int second = super.getSeconds();
136 if (second < 10) {
137 secondString = "0" + second;
[all...]
H A DTimestamp.java81 * @param second 0 to 59
88 int hour, int minute, int second, int nano) {
89 super(year, month, date, hour, minute, second);
180 int second;
245 second =
257 second = Integer.parseInt(time_s.substring(secondColon+1));
263 return new Timestamp(year - 1900, month - 1, day, hour, minute, second, a_nanos);
281 int second = super.getSeconds();
321 if (second < 10) {
322 secondString = "0" + second;
87 Timestamp(int year, int month, int date, int hour, int minute, int second, int nano) argument
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Filter/src/com/sun/hotspot/igv/filter/
H A DCombineFilter.java168 private PropertyMatcher second; field in class:CombineFilter.CombineRule
171 public CombineRule(PropertyMatcher first, PropertyMatcher second) { argument
172 this(first, second, false);
176 public CombineRule(PropertyMatcher first, PropertyMatcher second, boolean reversed) { argument
178 this.second = second;
191 return second;
/openjdk7/jdk/src/share/classes/javax/imageio/spi/
H A DPartiallyOrderedSet.java124 * sequence than the second node. If a prior ordering existed
130 public boolean setOrdering(Object first, Object second) { argument
134 (DigraphNode)poNodes.get(second);
145 public boolean unsetOrdering(Object first, Object second) { argument
149 (DigraphNode)poNodes.get(second);
/openjdk7/langtools/test/tools/javac/generics/
H A DParametricException.java71 private U second; field in class:Pair
72 Pair(T first, U second) { argument
74 this.second = second;
80 return second;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/datatype/
H A DDatatypeFactoryImpl.java83 * Gregorian year, month, day, hour, minute, and second components defined in Section 5.5.3.2 of [ISO 8601], respectively.
85 * year, month, day, hour, minute, and second.
115 * Gregorian year, month, day, hour, minute, and second components defined in Section 5.5.3.2 of [ISO 8601], respectively.
117 * year, month, day, hour, minute, and second.
336 * whose lexical representation contains only day, hour, minute, and second components.
371 * whose lexical representation contains only day, hour, minute, and second components.
393 * <p>Any remaining milliseconds after determining the day, hour, minute and second are discarded.</p>
409 * <code>day</code>, <code>hour</code>, <code>minute</code> and <code>second</code> as defined in
414 * whose lexical representation contains only day, hour, minute, and second components.
429 * @param second Secon
439 newDurationDayTime( final boolean isPositive, final BigInteger day, final BigInteger hour, final BigInteger minute, final BigInteger second) argument
480 newDurationDayTime( final boolean isPositive, final int day, final int hour, final int minute, final int second) argument
631 newXMLGregorianCalendar( final BigInteger year, final int month, final int day, final int hour, final int minute, final int second, final BigDecimal fractionalSecond, final int timezone) argument
[all...]
/openjdk7/jaxp/src/javax/xml/datatype/
H A DDatatypeFactory.java191 * Gregorian year, month, day, hour, minute, and second components defined in Section 5.5.3.2 of [ISO 8601], respectively.
193 * year, month, day, hour, minute, and second.
220 * Gregorian year, month, day, hour, minute, and second components defined in Section 5.5.3.2 of [ISO 8601], respectively.
222 * year, month, day, hour, minute, and second.
358 * whose lexical representation contains only day, hour, minute, and second components.
402 * whose lexical representation contains only day, hour, minute, and second components.
424 * <p>Any remaining milliseconds after determining the day, hour, minute and second are discarded.</p>
440 * <code>day</code>, <code>hour</code>, <code>minute</code> and <code>second</code> as defined in
445 * whose lexical representation contains only day, hour, minute, and second components.
460 * @param second Secon
470 newDurationDayTime( final boolean isPositive, final BigInteger day, final BigInteger hour, final BigInteger minute, final BigInteger second) argument
513 newDurationDayTime( final boolean isPositive, final int day, final int hour, final int minute, final int second) argument
823 newXMLGregorianCalendar( final BigInteger year, final int month, final int day, final int hour, final int minute, final int second, final BigDecimal fractionalSecond, final int timezone) argument
859 newXMLGregorianCalendar( final int year, final int month, final int day, final int hour, final int minute, final int second, final int millisecond, final int timezone) argument
[all...]
H A DXMLGregorianCalendar.java109 * An hour value of 24 is allowed to be set in the lexical space provided the minute and second
122 * <td><a name="datetimefield-second"/>second</td>
129 * <i>(Note: 60 only allowable for leap second.)</i><br/>
218 * int second,
227 * int second,
335 * @param second value constraints are summarized in
336 * <a href="#datetimefield-second">second field of date/time field mapping table</a>.
344 public void setTime(int hour, int minute, int second) { argument
388 setSecond(int second) argument
434 setTime( int hour, int minute, int second, BigDecimal fractional) argument
463 setTime(int hour, int minute, int second, int millisecond) argument
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsMarkSweepDecorator.cpp61 PSMarkSweepDecorator* second = heap->young_gen()->eden_mark_sweep(); local
66 _destination_decorator = second;
67 } else if ( _destination_decorator == second ) {
/openjdk7/hotspot/src/share/vm/opto/
H A Doptoreg.hpp183 void set_pair( OptoReg::Name second, OptoReg::Name first ) { _second= second; _first= first; } argument
193 OptoReg::Name second() const { return _second; } function in class:OptoRegPair
195 OptoRegPair(OptoReg::Name second, OptoReg::Name first) { _second = second; _first = first; } argument
/openjdk7/jaxws/src/share/jaf_classes/com/sun/activation/registries/
H A DMailcapFile.java195 * Merge the first hash into the second.
200 private Map mergeResults(Map first, Map second) { argument
201 Iterator verb_enum = second.keySet().iterator();
204 // iterate through the verbs in the second map
209 clonedHash.put(verb, second.get(verb));
212 List oldV = (List)second.get(verb);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/fmt/
H A DJStaticJavaFile.java177 private final LineFilter first,second; field in class:JStaticJavaFile.ChainFilter
178 public ChainFilter( LineFilter first, LineFilter second ) {
180 this.second=second;
185 return second.process(line);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/scd/
H A DIterators.java180 private final Iterator<? extends T> first,second; field in class:Iterators.Union
182 public Union(Iterator<? extends T> first, Iterator<? extends T> second) { argument
184 this.second = second;
188 return first.hasNext() || second.hasNext();
193 else return second.next();
/openjdk7/jdk/test/java/awt/event/MouseEvent/SpuriousExitEnter/
H A DSpuriousExitEnter_3.java128 private static void moveBetween(Robot r, Point first, Point second) { argument
130 Util.mouseMove(r, first, second);
132 Util.mouseMove(r, second, first);
/openjdk7/hotspot/src/share/vm/code/
H A Dvmreg.hpp211 void set_pair( VMReg second, VMReg first ) { _second= second; _first= first; } argument
240 VMReg second() const { return _second; } function in class:VMRegPair

Completed in 130 milliseconds

12