Searched refs:one (Results 1 - 25 of 123) sorted by relevance

12345

/openjdk7/langtools/test/tools/javac/HiddenAbstractMethod/one/
H A DParent.java24 package one; package
/openjdk7/langtools/test/tools/javac/NonAmbiguousField/one/
H A DParent.java24 package one; package
H A DParent2.java24 package one; package
/openjdk7/langtools/test/tools/javac/miranda/4686148/
H A DAbstractTest.java24 package one; package
H A DTest.java34 package one; package
H A DConcreteTest.java25 import one.*;
/openjdk7/langtools/test/tools/javac/HiddenAbstractMethod/two/
H A DChild.java26 public class Child extends one.Parent {
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/util/
H A DObjects.java41 public static boolean equals(Object one, Object two) { argument
42 return one == two || one != null && one.equals(two);
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/utils/
H A DObjects.java41 public static boolean equals(Object one, Object two) { argument
42 return one == two || one != null && one.equals(two);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/utils/
H A DObjects.java41 public static boolean equals(Object one, Object two) { argument
42 return one == two || one != null && one.equals(two);
/openjdk7/jdk/src/share/native/java/lang/fdlibm/src/
H A Ds_tanh.c37 * 2. 0 <= x <= 2**-55 : tanh(x) := x*(one+x)
54 static const double one=1.0, two=2.0, tiny = 1.0e-300; variable
56 static double one=1.0, two=2.0, tiny = 1.0e-300; variable
75 if (jx>=0) return one/x+one; /* tanh(+-inf)=+-1 */
76 else return one/x-one; /* tanh(NaN) = NaN */
82 return x*(one+x); /* tanh(small) = small */
85 z = one - two/(t+two);
92 z = one
[all...]
H A Ds_asinh.c45 one = 1.00000000000000000000e+00, /* 0x3FF00000, 0x00000000 */ variable
62 if(huge+x>one) return x; /* return x inexact except 0 */
68 w = __ieee754_log(2.0*t+one/(sqrt(x*x+one)+t));
71 w =log1p(fabs(x)+t/(one+sqrt(one+t)));
H A De_acosh.c48 one = 1.0, variable
72 return __ieee754_log(2.0*x-one/(x+sqrt(t-one)));
74 t = x-one;
H A De_atanh.c48 static const double one = 1.0, huge = 1e300; variable
50 static double one = 1.0, huge = 1e300; variable
76 t = 0.5*log1p(t+t*x/(one-x));
78 t = 0.5*log1p((x+x)/(one-x));
H A De_sinh.c48 static const double one = 1.0, shuge = 1.0e307; variable
50 static double one = 1.0, shuge = 1.0e307; variable
76 if(shuge+x>one) return x;/* sinh(tiny) = tiny with inexact */
78 if(ix<0x3ff00000) return h*(2.0*t-t*t/(t+one));
79 return h*(t+t/(t+one));
86 lx = *( (((*(unsigned*)&one)>>29)) + (unsigned*)&x);
H A De_cosh.c51 static const double one = 1.0, half=0.5, huge = 1.0e300; variable
53 static double one = 1.0, half=0.5, huge = 1.0e300; variable
77 w = one+t;
79 return one+(t*t)/(w+w);
92 lx = *( (((*(unsigned*)&one)>>29)) + (unsigned*)&x);
/openjdk7/langtools/test/tools/javac/NonAmbiguousField/two/
H A DChild.java30 public class Child extends one.Parent implements I {
H A DChild2.java30 public class Child2 extends one.Parent2 implements I {
/openjdk7/jdk/test/com/sun/jdi/
H A DInstTarg.java41 one();
46 void one() { method in class:InstTarg
/openjdk7/jdk/test/java/beans/PropertyChangeSupport/
H A DTestEquals.java39 TestEquals one = new TestEquals(1);
44 pcs.addPropertyChangeListener(PROPERTY, one);
47 PropertyChangeEvent event = new PropertyChangeEvent(source, PROPERTY, one, two);
49 test(one, two, 1); // only one check
50 pcs.firePropertyChange(PROPERTY, one, two);
51 test(one, two, 2); // because it invokes firePropertyChange(PropertyChangeEvent)
52 pcs.fireIndexedPropertyChange(PROPERTY, 1, one, two);
53 test(one, two, 2); // because it invokes firePropertyChange(PropertyChangeEvent)
/openjdk7/jdk/make/common/internal/
H A DImportComponents.gmk64 define import-one-classes
72 define import-one-docs
80 define import-one-sources
88 define import-one-binaries
118 $(call import-one-sources,LANGTOOLS_DIST,$1)
119 $(call import-one-sources,CORBA_DIST,$1)
120 $(call import-one-sources,JAXP_DIST,$1)
121 $(call import-one-sources,JAXWS_DIST,$1)
126 $(call import-one-docs,LANGTOOLS_DIST,$1)
127 $(call import-one
[all...]
/openjdk7/jdk/test/java/net/URI/
H A DRelativeEncoding.java35 URI one = new URI("Relative%20with%20spaces");
37 URI three = two.resolve(one);
/openjdk7/jdk/test/java/beans/VetoableChangeSupport/
H A DTestEquals.java40 TestEquals one = new TestEquals(1);
45 vcs.addVetoableChangeListener(PROPERTY, one);
48 PropertyChangeEvent event = new PropertyChangeEvent(source, PROPERTY, one, two);
50 test(one, two, 1); // only one check
51 vcs.fireVetoableChange(PROPERTY, one, two);
52 test(one, two, 2); // because it invokes fireVetoableChange(PropertyChangeEvent)
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DXSModelGroupImpl.java92 int min = 0, one;
97 one = fParticles[i].minEffectiveTotalRange();
98 if (one < min)
99 min = one;
112 // if one of the max value of the particles is unbounded, return unbounded;
115 int total = 0, one;
117 one = fParticles[i].maxEffectiveTotalRange();
118 if (one == SchemaSymbols.OCCURRENCE_UNBOUNDED)
120 total += one;
125 // if one o
[all...]
/openjdk7/jdk/test/java/lang/String/
H A DCompareIC.java50 private void testTriplet(String one, String two, String three) argument
52 if (one.compareToIgnoreCase(two) > 0)
56 if (three.compareToIgnoreCase(one) < 0)

Completed in 157 milliseconds

12345