Searched refs:first (Results 1 - 25 of 424) sorted by relevance

1234567891011>>

/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/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DFieldType.java34 private char first; field in class:FieldType
38 this.first = (char) signature.getByteAt(0);
40 switch (this.first) {
53 Assert.that(false, "Unknown char in field signature \"" + signature.asString() + "\": " + this.first);
59 public boolean isByte() { return first == 'B'; }
60 public boolean isChar() { return first == 'C'; }
61 public boolean isDouble() { return first == 'D'; }
62 public boolean isFloat() { return first == 'F'; }
63 public boolean isInt() { return first == 'I'; }
64 public boolean isLong() { return first
[all...]
/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/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/test/java/lang/ThreadGroup/
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();
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();
/openjdk7/jdk/test/java/util/WeakHashMap/
H A DGCDuringIteration.java68 void checkIterator(final Iterator<Map.Entry<Foo, Integer>> it, int first) { argument
70 for (int i = first; i >= 0; --i) {
101 int first = firstValue(map);
103 foos[first] = null;
104 for (int i = 0; i < 10 && map.size() != first; i++)
106 equal(map.size(), first);
107 checkIterator(it, first-1);
108 equal(map.size(), first);
109 equal(firstValue(map), first-1);
113 int first
[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/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/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/jdk/test/com/sun/jdi/
H A DInstTarg.java26 static InstTarg first = new InstTarg(); field in class:InstTarg
35 first.go();
/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/jdk/src/share/classes/java/awt/event/
H A DHierarchyEvent.java99 * Marks the first integer id for the range of hierarchy event ids.
305 boolean first = true;
307 first = false;
311 if (first) {
312 first = false;
319 if (first) {
320 first = false;
326 if (!first) {
/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/test/java/beans/VetoableChangeSupport/
H A DTest6630275.java40 CheckListener first = new CheckListener(false);
45 vcs.addVetoableChangeListener(first);
46 vcs.addVetoableChangeListener(PROPERTY, first);
52 first.validate();
H A DTest4425885.java40 CheckListener first = new CheckListener();
45 vcs.addVetoableChangeListener(PROPERTY, first);
51 if (first.odd)
52 throw new Error("no undo for the first listener", exception);
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/toJavaPortable/
H A DNameModifierImpl.java49 * exactly one % character. Finally, if % is not the first char in
57 int first = pattern.indexOf( '%' ) ;
60 if (first != last)
64 if (first == -1)
78 // at this point, 0 <= first && first < pattern.length()
79 prefix = pattern.substring( 0, first ) ;
80 suffix = pattern.substring( first+1 ) ;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/dtdparser/
H A DXmlNames.java100 int first = value.indexOf(':');
103 if (first <= 0)
109 if (last != first)
112 return isUnqualifiedName(value.substring(0, first))
113 && isUnqualifiedName(value.substring(first + 1));
/openjdk7/jdk/test/java/beans/XMLEncoder/
H A DTest4631471.java82 DefaultMutableTreeNode first = new DefaultMutableTreeNode("first");
86 first.add(new DefaultMutableTreeNode("1.1"));
87 first.add(new DefaultMutableTreeNode("1.2"));
88 first.add(new DefaultMutableTreeNode("1.3"));
98 node.add(first);
/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);
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DSslMacCore.java51 private boolean first; // Is this the first data to be processed? field in class:SslMacCore
63 first = true;
112 if (first == true) {
116 first = false;
124 * Processes the first <code>len</code> bytes in <code>input</code>,
132 if (first == true) {
136 first = false;
144 if (first == true) {
148 first
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJNarrowedClass.java81 boolean first = true;
83 if(first)
84 first = false;
97 boolean first = true;
99 if(first)
100 first = false;
114 boolean first = true;
116 if(first)
117 first = false;
135 boolean first
[all...]
/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/jdk/test/sun/security/krb5/auto/
H A DReplayCache.java50 byte[] first = c.take(new byte[0]);
51 s.take(first);
55 s.take(first); // Replay the last token sent
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/server/
H A DHistogramQuery.java49 public int compare(JavaClass first, JavaClass second) {
51 first.getInstancesCount(false));
57 public int compare(JavaClass first, JavaClass second) {
58 return first.getName().compareTo(second.getName());
64 public int compare(JavaClass first, JavaClass second) {
66 first.getTotalInstanceSize());

Completed in 232 milliseconds

1234567891011>>