Searched defs:i1 (Results 1 - 25 of 72) sorted by relevance

123

/openjdk7/langtools/test/tools/javac/ForwardReference/
H A DT6676362b.java34 static final int i1 = T6676362b.i2; //legal - usage is not via simple name field in class:T6676362b
35 static final int i2 = i1;
/openjdk7/langtools/test/tools/javac/diags/examples/
H A DInapplicableSymbols.java29 void m(int i1) {} argument
30 void m(int i1, int i2) {} argument
/openjdk7/hotspot/test/compiler/7141637/
H A DSpreadNullArg.java58 public static int target_spread_arg(Integer i1) { argument
59 return i1.intValue();
/openjdk7/hotspot/test/compiler/6885584/
H A DTest6885584.java36 static private int i1; field in class:Test6885584
48 i1 = i2;
53 if(i2 > i3)i1 = k;
/openjdk7/jdk/test/javax/swing/text/Utilities/
H A Dbug7045593.java73 private static void assertEquals(int i1, int i2) { argument
74 if (i1 != i2) {
75 throw new RuntimeException("Test failed, " + i1 + " != " + i2);
/openjdk7/langtools/test/tools/javac/
H A DT6227617.java13 int i1 = 2;
14 int i2 = (int) i1; // warn
27 static final int i1 = Foo.i1; field in class:T6227617
33 static final int i1 = (int) 1; field in class:Foo
/openjdk7/langtools/test/tools/javac/conditional/6500343/
H A DT6500343b.java34 final static int i1 = 0; field in class:T6500343b
40 case (i1 == 5 ? 1 : 2):
41 case (i1 == i2 ? 2 : 3):
/openjdk7/langtools/test/tools/javac/overload/
H A DT5090220.java32 static void foo(int i1, Integer i2) { argument
35 static void foo(Integer i1, double d) { argument
/openjdk7/jdk/src/share/classes/sun/audio/
H A DContinuousAudioDataStream.java70 public int read(byte ab[], int i1, int j) { argument
75 int i2 = super.read(ab, i1 + k, j - k);
/openjdk7/hotspot/test/compiler/8007294/
H A DTest8007294.java34 int i1; field in class:Test8007294
37 Test8007294(int i1, int i2) { argument
38 this.i1 = i1;
48 int v1 = obj.i1;
53 obj.i1 = v2;
78 if (obj.i1 != 100 || obj.i2 != 10) {
79 System.out.println("FAILED test1 obj.i1 = " + obj.i1 +", obj.i2 = " + obj.i2);
/openjdk7/hotspot/test/compiler/6916644/
H A DTest6916644.java35 static int i1; field in class:Test6916644
39 result = (d <= 0.0D) ? i1 : i2;
/openjdk7/langtools/test/tools/javac/ClassModifiers/
H A DInterfaceAndInnerClsCtor.java49 public final static Inner i1 = new Inner('a'); field in interface:InterfaceAndInnerClsCtor
/openjdk7/jdk/src/share/native/java/lang/fdlibm/src/
H A Ds_ceil.c51 int i0,i1,j0; local
54 i1 = __LO(x);
59 if(i0<0) {i0=0x80000000;i1=0;}
60 else if((i0|i1)!=0) { i0=0x3ff00000;i1=0;}
64 if(((i0&i)|i1)==0) return x; /* x is integral */
67 i0 &= (~i); i1=0;
75 if((i1&i)==0) return x; /* x is integral */
80 j = i1 + (1<<(52-j0));
81 if(j<i1) i
[all...]
H A Ds_floor.c51 int i0,i1,j0; local
54 i1 = __LO(x);
59 if(i0>=0) {i0=i1=0;}
60 else if(((i0&0x7fffffff)|i1)!=0)
61 { i0=0xbff00000;i1=0;}
65 if(((i0&i)|i1)==0) return x; /* x is integral */
68 i0 &= (~i); i1=0;
76 if((i1&i)==0) return x; /* x is integral */
81 j = i1+(1<<(52-j0));
82 if(j<i1) i
[all...]
H A Ds_modf.c52 int i0,i1,j0; local
55 i1 = __LO(x); /* low x */
64 if(((i0&i)|i1)==0) { /* x is integral */
82 if((i1&i)==0) { /* x is integral */
89 __LOp(iptr) = i1&(~i);
H A Ds_rint.c57 unsigned i,i1; local
61 i1 = __LO(x);
65 if(((i0&0x7fffffff)|i1)==0) return x;
66 i1 |= (i0&0x0fffff);
68 i0 |= ((i1|-i1)>>12)&0x80000;
77 if(((i0&i)|i1)==0) return x; /* x is integral */
79 if(((i0&i)|i1)!=0) {
80 if(j0==19) i1 = 0x40000000; else
89 if((i1
[all...]
/openjdk7/langtools/test/tools/javadoc/6964914/
H A DTestStdDoclet.java94 private void checkEqual(String l1, int i1, String l2, int i2) throws Exception { argument
95 if (i1 != i2)
96 throw new Exception(l1 + " warn count, " + i1 + ", does not match "
H A DTestUserDoclet.java93 void checkEqual(String l1, int i1, String l2, int i2) throws Exception { argument
94 if (i1 != i2)
95 throw new Exception(l1 + " warn count, " + i1 + ", does not match "
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DInstructionComparator.java76 public boolean equals(Instruction i1, Instruction i2) {
77 if(i1.opcode == i2.opcode) {
78 if(i1 instanceof Select) {
79 InstructionHandle[] t1 = ((Select)i1).getTargets();
91 } else if(i1 instanceof BranchInstruction) {
92 return ((BranchInstruction)i1).target ==
94 } else if(i1 instanceof ConstantPushInstruction) {
95 return ((ConstantPushInstruction)i1).getValue().
97 } else if(i1 instanceof IndexedInstruction) {
98 return ((IndexedInstruction)i1)
111 equals(Instruction i1, Instruction i2) argument
[all...]
/openjdk7/hotspot/test/compiler/7048332/
H A DTest7048332.java40 static int test(int i1, int i2, int i3, int i4, int i5, int i6) { argument
/openjdk7/jdk/test/java/io/Serializable/defaultDataEnd/
H A DDefaultDataEnd.java34 int i1 = 1, i2 = 2; field in class:A
69 int i1 = 1, i2 = 2; field in class:B
/openjdk7/jdk/test/java/text/BreakIterator/
H A DExceptionTest.java113 private static void check(int i1, int i2) { argument
114 if (i1 != i2) {
115 throw new RuntimeException(i1 + " != " + i2);
/openjdk7/langtools/test/tools/javac/capture/
H A DT6594284.java37 interface I1 { void i1(); } method in interface:T6594284.I1
/openjdk7/langtools/test/tools/javac/generics/6711619/
H A DT6711619a.java24 void i1(); method in interface:T6711619a.I1
28 public void i1() {} method in class:T6711619a.E
/openjdk7/langtools/test/tools/javac/generics/inference/5034571/
H A DT5034571.java33 void i1(); method in interface:T5034571.I1
46 g1.get().i1();
49 g1.get().i1();

Completed in 179 milliseconds

123