Searched defs:first (Results 1 - 25 of 162) sorted by relevance

1234567

/openjdk7/hotspot/test/compiler/7046096/
H A DTest7046096.java36 static int first = 1; field in class:Test7046096
39 if (first != 0) {
47 for (int i=0; i < first; i++) {
/openjdk7/langtools/test/tools/javac/diags/examples/ProcUnclosedTypeFiles/processors/
H A DAnnoProc.java34 if (first) {
45 first = false;
54 boolean first = true; field in class:AnnoProc
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/copyobject/
H A DFallbackObjectCopierImpl.java31 /** Trys a first ObjectCopier. If the first throws a ReflectiveCopyException,
36 private ObjectCopier first ; field in class:FallbackObjectCopierImpl
39 public FallbackObjectCopierImpl( ObjectCopier first, argument
42 this.first = first ;
49 return first.copy( src ) ;
/openjdk7/jdk/src/share/classes/java/nio/file/
H A DPaths.java44 * elements then the value of the {@code first} parameter is the path string
46 * non-empty string, including {@code first}, is considered to be a sequence
53 * A {@code Path} representing an empty path is returned if {@code first}
71 * @param first
83 public static Path get(String first, String... more) { argument
84 return FileSystems.getDefault().getPath(first, more);
/openjdk7/jdk/test/java/lang/ThreadGroup/
H A DStop.java36 private static final Thread first = new Thread(group, new Stop()); field in class:Stop
47 // When the first thread runs, it will stop the group.
48 if (Thread.currentThread() == first) {
65 first.start();
78 // first thread terminates the thread group.
82 first.stop();
H A DSuspend.java35 private static final Thread first = new Thread(group, new Suspend()); field in class:Suspend
42 if (Thread.currentThread() == first) {
56 first.start();
60 while (!first.isAlive() || !second.isAlive()) {
71 first.stop();
/openjdk7/jdk/test/java/lang/reflect/ReflectPermission/
H A DExceptions.java35 private static Throwable first; field in class:Exceptions
43 if (first == null)
44 first = ex;
87 + fail + " failure(s), first", first);
/openjdk7/jdk/test/java/rmi/transport/pinLastArguments/
H A DPinLastArguments.java48 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/jdk/test/java/util/IllegalFormatException/
H A DConstructors.java38 private static Throwable first; field in class:Constructors
46 if (first == null)
47 first = new RuntimeException(s);
116 + fail + " failure(s), first", first);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/
H A DDTMAxisTraverser.java38 * for(int nodeHandle=myTraverser.first(myContext);
52 * an axis, the first function must be used to get the first node.
59 * @return the first node in the traversal.
61 public int first(int context) method in class:DTMAxisTraverser
69 * an axis, the first function must be used to get the first node.
78 * @return the first node in the traversal.
80 public int first(int context, int extendedTypeID) method in class:DTMAxisTraverser
92 * previous traversal step. For the first traversa
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/resolver/
H A DCompositeResolverImpl.java34 private Resolver first ; field in class:CompositeResolverImpl
37 public CompositeResolverImpl( Resolver first, Resolver second ) argument
39 this.first = first ;
45 org.omg.CORBA.Object result = first.resolve( name ) ;
54 result.addAll( first.list() ) ;
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/orb/
H A DStringPair.java28 private String first ; field in class:StringPair
41 return (first.equals( other.first ) &&
47 return first.hashCode() ^ second.hashCode() ;
50 public StringPair( String first, String second ) argument
52 this.first = first ;
58 return first ;
/openjdk7/jdk/src/share/classes/javax/swing/text/html/parser/
H A DContentModelState.java147 public Element first() { method in class:ContentModelState
156 return model.first();
161 return m.first();
165 return model.first();
177 if (model.first(token)) {
191 if (model.first(token)) {
201 if (model.first(token)) {
212 if (m.first(token)) {
222 if (m.first(token) || m.empty()) {
239 if (m.first(toke
[all...]
/openjdk7/jdk/src/share/classes/sun/font/
H A DAttributeMap.java78 private static boolean first = false; // debug field in class:AttributeMap
81 if (first) {
82 first = false;
/openjdk7/jdk/src/share/classes/java/text/
H A DCharacterIterator.java54 * by calling setIndex(), first(), and last().
67 * for(char c = iter.first(); c != CharacterIterator.DONE; c = iter.next()) {
118 * @return the first character in the text, or DONE if the text is empty
121 public char first(); method in interface:CharacterIterator
175 * Returns the end index of the text. This index is the index of the first
/openjdk7/jdk/src/share/classes/java/util/
H A DSortedSet.java208 * Returns the first (lowest) element currently in this set.
210 * @return the first (lowest) element currently in this set
213 E first(); method in interface:SortedSet
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiThreadState.inline.hpp42 inline JvmtiEnvThreadState* JvmtiEnvThreadStateIterator::first() { function in class:JvmtiEnvThreadStateIterator
54 for (JvmtiEnvThreadState* ets = it.first(); ets != NULL; ets = it.next(ets)) {
/openjdk7/hotspot/test/compiler/7048332/
H A DTest7048332.java37 static int first = 1; field in class:Test7048332
42 if (last >= first) {
43 result = last - first;
45 result = last - first + capacity;
/openjdk7/jdk/test/com/sun/jdi/
H A DCountEvent.java42 static CountEventTarg first = new CountEventTarg(); field in class:CountEventTarg
51 first.go();
H A DInstTarg.java26 static InstTarg first = new InstTarg(); field in class:InstTarg
35 first.go();
/openjdk7/jdk/test/java/util/Formatter/
H A DBasic.java40 private static Throwable first; field in class:Basic
48 if (first == null)
56 if (first == null)
66 first = x;
101 + fail + " failure(s), first", first);
H A DConstructors.java38 private static Throwable first; field in class:Constructors
46 if (first == null)
47 first = new RuntimeException(s);
54 if (first == null)
55 first = ex;
502 + fail + " failure(s), first", first);
/openjdk7/jdk/src/share/classes/sun/misc/
H A DCleaner.java72 static private Cleaner first = null; field in class:Cleaner
79 if (first != null) {
80 cl.next = first;
81 first.prev = cl;
83 first = cl;
94 if (first == cl) {
96 first = cl.next;
98 first = cl.prev;
/openjdk7/langtools/test/tools/javac/api/
H A DTestJavacTask_Lock.java71 for (MethodKind first: 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);
93 first.test(t);
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/resolver/
H A DResolverDefault.java79 * union of first.list() and second.list(). result.resolve( name ) returns
80 * first.resolve( name ) if that is not null, otherwise returns the result of
83 public static Resolver makeCompositeResolver( Resolver first, Resolver second ) argument
85 return new CompositeResolverImpl( first, second ) ;

Completed in 154 milliseconds

1234567