Searched refs:one (Results 76 - 100 of 123) sorted by relevance

12345

/openjdk7/jdk/src/share/classes/javax/naming/
H A DNameImpl.java105 boolean one = false;
110 if (start && ((one = isA(name, i, syntaxBeginQuote1)) ||
114 beginQuote = one ? syntaxBeginQuote1 : syntaxBeginQuote2;
115 endQuote = one ? syntaxEndQuote1 : syntaxEndQuote2;
117 escapingStyle = one ? STYLE_QUOTE1 : STYLE_QUOTE2;
165 ((one = isA(name, i+syntaxTypevalSeparator.length(), syntaxBeginQuote1)) ||
168 beginQuote = one ? syntaxBeginQuote1 : syntaxBeginQuote2;
169 endQuote = one ? syntaxEndQuote1 : syntaxEndQuote2;
680 "A flat name can only zero or one component");
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A DREADME.txt46 to the difficulty of getting the current thread while inside one
95 due to the one jobject per ObjectIndex mapping.
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/crypto/dk/
H A DDes3DkCrypto.java96 byte[] one = keyCorrection(des3Expand(in, 0, 7));
101 System.arraycopy(one, 0, key, 0, 8);
/openjdk7/jdk/test/java/util/Formatter/
H A DBasicBigDecimal.java838 BigDecimal one = BigDecimal.ONE;
889 tryCatch("%d", IllegalFormatConversionException.class, one);
890 tryCatch("%,.4e", FormatFlagsConversionMismatchException.class, one);
954 test("%10.3e", " 1.000e+00", one);
1017 test("%.3f", "1.000", one);
1018 test("%10.3f", " 1.000", one);
1259 test("%.3g", "1.00", one);
1260 test("%10.3g", " 1.00", one);
H A DBasicDouble.java869 double one = 1.0;
889 tryCatch("%d", IllegalFormatConversionException.class, one);
890 tryCatch("%,.4e", FormatFlagsConversionMismatchException.class, one);
954 test("%10.3e", " 1.000e+00", one);
1017 test("%.3f", "1.000", one);
1018 test("%10.3f", " 1.000", one);
1259 test("%.3g", "1.00", one);
1260 test("%10.3g", " 1.00", one);
H A DBasicFloat.java849 float one = 1.0f;
889 tryCatch("%d", IllegalFormatConversionException.class, one);
890 tryCatch("%,.4e", FormatFlagsConversionMismatchException.class, one);
954 test("%10.3e", " 1.000e+00", one);
1017 test("%.3f", "1.000", one);
1018 test("%10.3f", " 1.000", one);
1259 test("%.3g", "1.00", one);
1260 test("%10.3g", " 1.00", one);
H A DBasic-X.java.template838 $type$ one = BigDecimal.ONE;
849 $type$ one = 1.0f;
859 $type$ one = new $type$(1.0f);
869 $type$ one = 1.0;
879 $type$ one = new $type$(1.0);
889 tryCatch("%d", IllegalFormatConversionException.class, one);
890 tryCatch("%,.4e", FormatFlagsConversionMismatchException.class, one);
954 test("%10.3e", " 1.000e+00", one);
1017 test("%.3f", "1.000", one);
1018 test("%10.3f", " 1.000", one);
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/util/
H A DXSNamedMapImpl.java57 // each entry contains components in one namespace
69 * Construct an XSNamedMap implementation for one namespace
94 * Construct an XSNamedMap implementation one namespace from an array
109 // get the namespace from the first one.
197 static boolean isEqual(String one, String two) { argument
198 return (one != null) ? one.equals(two) : (two == null);
/openjdk7/jdk/test/java/math/BigDecimal/
H A DZeroScalingTests.java325 for(BigDecimal one: ones) {
328 (int)Math.min(Math.max((long)zero.scale() - one.scale(),
333 if(! (result=zero.divide(one)).equals(expected) ) {
340 if(! (result=zero.divide(one, MathContext.UNLIMITED)).equals(expected) ) {
348 if(! (result=zero.divide(one, longEnough)).equals(expected) ) {
/openjdk7/jdk/test/sun/security/ssl/sun/net/www/httpstest/
H A DHttpServer.java588 byte[] one; field in class:HttpServer.NioInputStream
603 one = new byte[1];
612 return read (one, 0, 1);
725 byte[] one; field in class:HttpServer.NioOutputStream
735 one = new byte [1];
739 one[0] = (byte)b;
740 write (one, 0, 1);
/openjdk7/jdk/test/sun/net/www/httptest/
H A DHttpServer.java408 byte[] one; field in class:HttpServer.NioInputStream
421 one = new byte[1];
430 return read (one, 0, 1);
531 byte[] one; field in class:HttpServer.NioOutputStream
538 one = new byte [1];
542 one[0] = (byte)b;
543 write (one, 0, 1);
/openjdk7/jdk/test/com/sun/jdi/
H A DTwoThreadsTest.java47 static boolean one = false; field in class:TwoThreadsTarg
H A DInvokeHangTest.java47 static boolean one = false; field in class:InvokeHangTarg
H A DSimulResumerTest.java47 static boolean one = false; field in class:SimulResumerTarg
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/doc-files/
H A DModality.txt64 WM_TRANSIENT_FOR is used to mark one window to be a child of another
65 one, in particular for any kind of dialogs. When a modal dialog
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DNames.java60 public final Name one; field in class:Names
170 one = fromString("1");
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Dec.c388 mp_int privKeyVal, order_1, one; local
392 MP_DIGITS(&one) = 0;
395 CHECK_MPI_OK( mp_init(&one, kmflag) );
410 CHECK_MPI_OK( mp_set_int(&one, 1) );
411 CHECK_MPI_OK( mp_sub(&order_1, &one, &order_1) );
413 CHECK_MPI_OK( mp_add(&privKeyVal, &one, &privKeyVal) );
419 mp_clear(&one);
/openjdk7/jdk/src/macosx/native/com/apple/laf/
H A DJRSUIConstantSync.m281 static CFNumberRef one = NULL;
287 one = CFNumberCreate(NULL, kCFNumberDoubleType, &oneVal);
290 return (value != 0) ? one : zero;
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapSchemaParser.java379 // make sure at least one value was returned
540 String[] one = readQDString(string, pos);
543 System.err.println("ReadQDescrList: found '" + one[0] +
547 values.addElement(one[0]);
1149 "A class definition must have exactly one numeric OID");
1166 qdStringAttr.getID() + " must have exactly one value");
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DCSSParser.java40 * is invoked one per property/value key, eg font size: foo;, would
95 /** Set to true if one character has been read ahead. */
512 * stopping when <code>stopChar</code>, whitespace, or one of {}()[] is
843 * Supports one character look ahead, this will throw if called twice
849 throw new RuntimeException("Can not handle look ahead of more than one character");
H A DHTMLDocument.java46 * expects. To change the structure one can subclass
464 * if loading the document entirely in one burst.
1053 * a newline present if one is needed. This may result in an additional
1056 * two elements, one for the image, ane one for the newline.</p>
1061 * "blah")</code> will result in two leaf elements at the end, one
1416 * <code>null</code> if one isn't found. This is not thread-safe.
1434 * <code>null</code> if one isn't found. This is not thread-safe.
1505 * Installs a default Parser if one has not been installed yet.
1564 * will still have at least one chil
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A DloopTransform.cpp283 // Standard IF only has one input value to check for loop invariance
577 assert(trip_count > 1, "one iteration loop should be optimized out already");
640 // After split at least one iteration will be executed in pre-loop.
741 // expression that does the alignment. Note that only one array base can be
1144 // Unroll the loop body one step - make each trip do 2 iterations.
1315 // Don't need to create new test since only one user.
1438 Node *one = _igvn.intcon(1); local
1439 set_ctrl(one, C->root());
1440 newcle->set_req(1, one);
1593 Node *one local
1799 Node *one = _igvn.intcon(1); local
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/scd/
H A DAxis.java70 * Returns true if this is one of the model group axis.
261 private Iterator<XSComponent> ret( XSComponent one, Iterator<? extends XSComponent> rest ) {
262 return union(singleton(one),rest);
/openjdk7/jdk/test/sun/management/jmxremote/startstop/
H A DJMXStartStopTest.sh126 _echo "**** Test one ****"
180 # start JMX by jcmd on one port than on other one
216 # start JMX by jcmd on one port, specify rmi port explicitly
262 # start JMX by jcmd on one port, specify rmi port explicitly
523 _echo "**** Server test one ****"
564 --port-one=*) _port_one=`_echo $parm | sed "s,^--.*=\(.*\),\1,"` ;;
/openjdk7/jdk/src/share/native/sun/awt/image/cvutils/
H A DREADME34 can be implemented in one of several different ways depending on the
175 buffer and then execute XPutImage to send that one row to the

Completed in 132 milliseconds

12345