Searched defs:result (Results 76 - 100 of 605) sorted by relevance

1234567891011>>

/openjdk7/jdk/test/java/lang/Math/
H A DTests.java29 * the test name, followed by the test arguments, the computed result,
30 * and finally the expected result.
53 boolean result, boolean expected) {
54 if (expected != result) {
58 "\tgot " + result + ").");
66 boolean result, boolean expected) {
67 if (expected != result) {
71 "\tgot " + result + ").");
79 boolean result, boolean expected) {
80 if (expected != result) {
52 test(String testName, float input, boolean result, boolean expected) argument
65 test(String testName, double input, boolean result, boolean expected) argument
78 test(String testName, float input1, float input2, boolean result, boolean expected) argument
91 test(String testName, double input1, double input2, boolean result, boolean expected) argument
104 test(String testName, float input, int result, int expected) argument
116 test(String testName, double input, int result, int expected) argument
129 test(String testName, float input, float result, float expected) argument
143 test(String testName, double input, double result, double expected) argument
156 test(String testName, float input1, double input2, float result, float expected) argument
171 test(String testName, double input1, double input2, double result, double expected) argument
186 test(String testName, float input1, int input2, float result, float expected) argument
201 test(String testName, double input1, int input2, double result, double expected) argument
216 testUlpCore(double result, double expected, double ulps) argument
243 testUlpDiff(String testName, double input, double result, double expected, double ulps) argument
257 testUlpDiff(String testName, double input1, double input2, double result, double expected, double ulps) argument
274 testUlpDiffWithAbsBound(String testName, double input, double result, double expected, double ulps, double absBound) argument
299 testUlpDiffWithLowerBound(String testName, double input, double result, double expected, double ulps, double lowerBound) argument
321 testTolerance(String testName, double input, double result, double expected, double tolerance) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/jgss/spnego/
H A DNegTokenTarg.java62 NegTokenTarg(int result, Oid mech, byte[] token, byte[] mechListMIC) argument
65 this.negResult = result;
83 // write the negotiated result with CONTEXT 00
84 DerOutputStream result = new DerOutputStream();
85 result.putEnumerated(negResult);
87 true, (byte) 0x00), result);
165 " result = " + getNegoResultString(negResult));
/openjdk7/jdk/test/java/util/concurrent/BlockingQueue/
H A DSingleProducerMultipleConsumerLoops.java93 volatile int result; field in class:SingleProducerMultipleConsumerLoops.Stage
113 result = 432;
143 result = s;
/openjdk7/jdk/test/java/util/concurrent/Exchanger/
H A DExchangeLoops.java80 volatile int result; field in class:ExchangeLoops.Stage
/openjdk7/jdk/test/java/util/concurrent/locks/ReentrantLock/
H A DCancelledLockLoops.java77 private volatile int result = 17; field in class:CancelledLockLoops.ReentrantLockLoop
120 int r = result;
122 System.out.println("useless result: " + r);
157 result += sum;
H A DLockOncePerThreadLoops.java75 private volatile int result = 17; field in class:LockOncePerThreadLoops.ReentrantLockLoop
98 int r = result;
100 System.out.println("useless result: " + r);
124 result += sum;
H A DTimeoutLockLoops.java77 private volatile int result = 17; field in class:TimeoutLockLoops.ReentrantLockLoop
106 int r = result;
108 System.out.println("useless result: " + r);
136 result += sum;
/openjdk7/jdk/test/sun/nio/cs/
H A DNIOJISAutoDetectTest.java247 static void checkCoderResult(CoderResult result) { argument
248 check(result.isUnderflow(),
249 "Unexpected coder result: " + result);
267 CoderResult result = autoDetect.decode(bb, charOutput, true);
268 checkCoderResult(result);
274 result = decoder.decode(bb, charExpected, true);
275 checkCoderResult(result);
/openjdk7/langtools/test/tools/javac/
H A DQualifiedThisAndSuper_1.java64 void check(String expr, String result, String expected) { argument
65 if (!result.equals(expected)) {
67 " : result " + result + ", expected " + expected);
H A DQualifiedThisAndSuper_2.java37 void check(String expr, String result, String expected) { argument
38 if (!result.equals(expected)) {
40 " : result " + result + ", expected " + expected);
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/wsaddressing/
H A DW3CEndpointReference.java108 public void writeTo(Result result){ argument
111 marshaller.marshal(this, result);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/validation/
H A DStreamValidatorHelper.java109 public void validate(Source source, Result result) argument
111 if (result == null || result instanceof StreamResult) {
115 if( result!=null ) {
127 identityTransformerHandler.setResult(result);
163 new Object [] {source.getClass().getName(), result.getClass().getName()}));
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/domapi/
H A DXPathEvaluatorImpl.java149 * within the expression will result in <code>DOMException</code>
210 * Evaluates an XPath expression string and returns a result of the
229 * within the expression will result in <code>DOMException</code>
232 * result will be coerced to return the specified type relying on
236 * @param result The <code>result</code> specifies a specific result
239 * the specified result, a new result object will be constructed and
242 * @return The result o
260 evaluate( String expression, Node contextNode, XPathNSResolver resolver, short type, Object result) argument
[all...]
/openjdk7/jaxp/src/com/sun/xml/internal/stream/
H A DXMLOutputFactoryImpl.java78 public javax.xml.stream.XMLEventWriter createXMLEventWriter(javax.xml.transform.Result result) throws javax.xml.stream.XMLStreamException { argument
80 if (result instanceof StAXResult && ((StAXResult)result).getXMLEventWriter() != null)
81 return ((StAXResult)result).getXMLEventWriter();
83 return new XMLEventWriterImpl(createXMLStreamWriter(result));
90 public javax.xml.stream.XMLStreamWriter createXMLStreamWriter(javax.xml.transform.Result result) throws javax.xml.stream.XMLStreamException { argument
92 if (result instanceof StreamResult) {
93 return createXMLStreamWriter((StreamResult) result, null);
94 } else if (result instanceof DOMResult) {
95 return new XMLDOMWriterImpl((DOMResult) result);
[all...]
/openjdk7/jaxp/src/javax/xml/validation/
H A DValidator.java88 * {@link #validate(Source source, Result result)}
89 * with <code>result</code> of <code>null</code>.</p>
119 * @see #validate(Source source, Result result)
129 * result to the specified output.</p>
205 * @param result
213 * (in which case <code>source.getNode()==result.getNode()</code>),
237 public abstract void validate(Source source, Result result) argument
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/ior/
H A DStubIORImpl.java238 private void appendByteArray( StringBuffer result, byte[] data ) argument
241 result.append( Integer.toHexString( data[ctr] ) ) ;
253 StringBuffer result = new StringBuffer() ;
254 result.append( "SimpleIORImpl[" ) ;
256 result.append( repositoryId ) ;
258 result.append( ",(" ) ;
259 result.append( profileTags[ctr] ) ;
260 result.append( ")" ) ;
261 appendByteArray( result, profileData[ctr] ) ;
264 result
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orbutil/
H A DObjectWriter.java50 public String toString() { return result.toString() ; }
52 public void append( boolean arg ) { result.append( arg ) ; }
54 public void append( char arg ) { result.append( arg ) ; }
56 public void append( short arg ) { result.append( arg ) ; }
58 public void append( int arg ) { result.append( arg ) ; }
60 public void append( long arg ) { result.append( arg ) ; }
62 public void append( float arg ) { result.append( arg ) ; }
64 public void append( double arg ) { result.append( arg ) ; }
66 public void append( String arg ) { result.append( arg ) ; }
72 protected StringBuffer result ; field in class:ObjectWriter
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/presentation/rmi/
H A DDynamicMethodMarshaller.java63 /** Copy the result as needed for this particular method.
67 Object copyResult( Object result, ORB orb ) throws RemoteException ; argument
69 /** Read the result from the InputStream. Returns null
70 * if the result type is null.
74 /** Write the result to the OutputStream. Does nothing if
75 * the result type is null.
77 void writeResult( OutputStream os, Object result ) ;
/openjdk7/corba/src/share/classes/com/sun/org/omg/CORBA/
H A DOperationDescription.java41 public org.omg.CORBA.TypeCode result = null; field in class:OperationDescription
57 result = _result;
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DObject.java182 * @param result a <code>NamedValue</code> object to serve as a
194 NamedValue result);
207 * @param result a <code>NamedValue</code> object to serve as a
226 NamedValue result,
191 _create_request(Context ctx, String operation, NVList arg_list, NamedValue result) argument
223 _create_request(Context ctx, String operation, NVList arg_list, NamedValue result, ExceptionList exclist, ContextList ctxlist) argument
H A DRequest.java104 * @return the <code>NamedValue</code> object containing the result
108 public abstract NamedValue result(); method in class:Request
241 * result of the method.
272 * the result or exception information for the invocation.
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DFindInCodeCachePanel.java56 StringBuffer result; field in class:FindInCodeCachePanel.Visitor
64 result = new StringBuffer();
77 reportResult(result, blob);
91 updateProgressBar(result);
93 result = null;
191 private void reportResult(StringBuffer result, CodeBlob blob) { argument
192 result.append("<a href='blob:");
193 result.append(blob.contentBegin().toString());
194 result.append("'>");
195 result
209 updateProgressBar(final StringBuffer result) argument
[all...]
/openjdk7/hotspot/src/share/vm/ci/
H A DciKlass.cpp79 bool result = this_klass->is_subtype_of(that_klass); local
81 return result;
94 bool result = this_klass->is_subclass_of(that_klass); local
96 return result;
180 ciKlass* result = local
183 return result;
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DadjoiningGenerations.cpp188 bool result = false; local
216 result = true;
236 return result;
H A DasPSOldGen.cpp85 size_t result = gen_size_limit() - virtual_space()->committed_size(); local
86 size_t result_aligned = align_size_down(result, heap->old_gen_alignment());
117 size_t result = policy->promo_increment_aligned_down(max_contraction); local
119 size_t result_aligned = align_size_down(result, gen_alignment);

Completed in 57 milliseconds

1234567891011>>