Searched defs:result (Results 376 - 400 of 605) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/tests/iio/
H A DInputImageTests.java225 Context(TestEnvironment env, Result result, int testType) { argument
226 super(env, result);
235 result.setUnits(size*size);
236 result.setUnitName("pixel");
314 public Object initTest(TestEnvironment env, Result result) { argument
315 return new Context(env, result, TEST_TOOLKIT);
388 public Object initTest(TestEnvironment env, Result result) { argument
389 return new Context(env, result, TEST_IMAGEIO);
446 public Object initTest(TestEnvironment env, Result result) { argument
447 return new Context(env, result, TEST_IMAGEREADE
481 initTest(TestEnvironment env, Result result) argument
[all...]
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/tests/text/
H A DTextTests.java110 Float[] result = new Float[input.length];
111 for (int i = 0; i < result.length; ++i) {
112 result[i] = new Float(input[i]);
114 return result;
126 String[] result = new String[input.length];
127 for (int i = 0; i < result.length; ++i) {
128 result[i] = pfx + input[i] + sfx;
130 return result;
142 String[] result = new String[input.length];
143 for (int i = 0; i < result
554 init(TestEnvironment env, Result result) argument
564 init(TestEnvironment env, Result result) argument
642 initTest(TestEnvironment env, Result result) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DSSLStreams.java172 SSLEngineResult result; field in class:SSLStreams.WrapperResult
244 * will get an exception. The overall result is returned.
286 r.result = engine.wrap (src, wrap_dst);
287 status = r.result.getStatus();
296 if (r.result.bytesProduced() > 0) {
299 assert l == r.result.bytesProduced();
341 r.result = engine.unwrap (unwrap_src, r.buf);
342 status = r.result.getStatus();
383 Status status = r.result.getStatus();
388 HandshakeStatus hs_status = r.result
[all...]
/openjdk7/jdk/src/share/transport/socket/
H A DsocketTransport.c252 JDWPTransportCapabilities result; local
254 memset(&result, 0, sizeof(result));
255 result.can_timeout_attach = JNI_TRUE;
256 result.can_timeout_accept = JNI_TRUE;
257 result.can_timeout_handshake = JNI_TRUE;
259 *capabilitiesPtr = result;
712 jint version, jdwpTransportEnv** result)
738 *result = &single_env;
711 jdwpTransport_OnLoad(JavaVM *vm, jdwpTransportCallback* cbTablePtr, jint version, jdwpTransportEnv** result) argument
/openjdk7/jdk/src/solaris/bin/
H A Djava_md_common.c100 char *result = NULL; local
119 for (f=tmp_path; *f && result==0; ) {
124 result = Resolve(s, program);
130 result = Resolve(dir, program);
132 if (result != 0) break;
136 return result;
/openjdk7/jdk/src/solaris/classes/sun/print/
H A DUnixPrintJob.java521 OutputStream output = po.result;
930 OutputStream result; field in class:UnixPrintJob.PrinterOpener
945 result = new FileOutputStream(spoolFile);
946 return result;
962 final String[] execCmd, final int result) throws IOException {
965 pw.append("error=").append(Integer.toString(result));
1000 final int result = process.exitValue();
1001 if (0 != result) {
1002 handleProcessFailure(process, execCmd, result);
961 handleProcessFailure(final Process failedProcess, final String[] execCmd, final int result) argument
/openjdk7/jdk/src/solaris/demo/jvmti/hprof/
H A Dhprof_md.c430 void * result; local
432 result = dlopen(name, RTLD_LAZY);
433 if (result == NULL) {
437 return result;
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/trax/
H A DTransformerImpl.java323 * @param result Will contain the output from the transformation
326 public void transform(Source source, Result result) argument
338 final SerializationHandler toHandler = getOutputHandler(result);
355 if (result instanceof DOMResult) {
356 ((DOMResult)result).setNode(_tohFactory.getNode());
357 } else if (result instanceof StAXResult) {
358 if (((StAXResult) result).getXMLEventWriter() != null)
362 else if (((StAXResult) result).getXMLStreamWriter() != null) {
364 //result = new StAXResult(_tohFactory.getXMLStreamWriter());
377 public SerializationHandler getOutputHandler(Result result) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/interceptors/
H A DClientRequestInfoImpl.java241 /*result*/ { false, false, true , false, false },
366 String result = null;
375 result = ORBUtility.repositoryIdOf(name);
377 result = ((ApplicationException)exception).getId();
383 cachedReceivedExceptionId = result;
408 TaggedComponent[] result = null;
417 result = (TaggedComponent[])cachedEffectiveComponents.get(
422 if( (result == null) &&
432 result = ptemp.getIOPComponents(myORB, id);
433 cachedEffectiveComponents.put( integerId, result );
667 public Any result (){ method in class:ClientRequestInfoImpl
[all...]
H A DRequestInfoImpl.java300 * This method returns the result from the invoked DII operation.
304 abstract public Any result (); method in class:RequestInfoImpl
337 * Describes the state of the result of the operation invocation. Its
444 Any result )
485 insertUserException( userException, result );
507 private void insertUserException( UserException userException, Any result )
527 // Call helper.insert( result, userException ):
530 insertMethodArguments[0] = result;
593 Any result = myORB.create_any();
601 (SystemException)exception, result );
[all...]
H A DServerRequestInfoImpl.java220 /*result*/ { false, false, true , false, false },
268 Any result = null ;
271 result = dsiException;
273 result = exceptionToAny( exception );
280 cachedSendingException = result;
382 Policy result = null;
385 result = objectAdapter.getEffectivePolicy( type );
391 return result;
414 boolean result = false ;
416 result
586 public Any result (){ method in class:ServerRequestInfoImpl
[all...]
/openjdk7/jdk/src/share/classes/sun/font/
H A DLayoutPathImpl.java265 SegmentPath result;
272 result = new SegmentPath(data, etype);
277 result = new SegmentPath(dataToAdopt, etype);
281 return result;
396 public boolean pointToPath(Point2D pt, Point2D result) { argument
487 result.setLocation(cl, co);
499 result.setLocation(pp);
502 result.setLocation(fp);
506 result.setLocation(x, y);
507 calcoffset(ci - 3, doExtend, result);
524 calcoffset(int index, boolean doExtend, Point2D result) argument
641 locateAndGetIndex(Point2D loc, boolean preceding, Point2D result) argument
697 pin(double lo, double hi, LineInfo result) argument
732 pin(int ix, LineInfo result) argument
973 pointToPath(Point2D pt, Point2D result) argument
[all...]
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DForkJoinTask.java83 * until the task's result has been computed. Computations should
92 * use may result in poor performance, and the potential to
146 * result in exceptions or errors, possibly including
589 * Report the result of invoke or join; called only upon
616 * result in exceptions or errors, possibly including {@code
628 * Returns the result of the computation when it {@link #isDone is
636 * @return the computed result
647 * necessary, and returns its result, or throws an (unchecked)
651 * @return the computed result
676 * result i
1256 T result; field in class:ForkJoinTask.AdaptedRunnable
1257 AdaptedRunnable(Runnable runnable, T result) argument
1279 T result; field in class:ForkJoinTask.AdaptedCallable
1323 adapt(Runnable runnable, T result) argument
[all...]
H A DScheduledThreadPoolExecutor.java206 ScheduledFutureTask(Runnable r, V result, long ns) { argument
207 super(r, result);
216 ScheduledFutureTask(Runnable r, V result, long ns, long period) { argument
217 super(r, result);
636 public <T> Future<T> submit(Runnable task, T result) { argument
637 return schedule(Executors.callable(task, result),
/openjdk7/jdk/src/share/classes/java/util/logging/
H A DLogger.java388 // because the wrapper would result in an attempt to replace
439 Logger result = demandLogger(name, resourceBundleName, callerClass);
441 if (result.resourceBundleName == null) {
452 result.setupResourceInfo(resourceBundleName, callerClass);
453 } else if (!result.resourceBundleName.equals(resourceBundleName)) {
456 throw new IllegalArgumentException(result.resourceBundleName +
459 return result;
470 Logger result = manager.demandSystemLogger(name, SYSTEM_LOGGER_RB_NAME);
471 return result;
530 Logger result
1083 exiting(String sourceClass, String sourceMethod, Object result) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/management/modelmbean/
H A DRequiredModelMBean.java802 * the result of the method execution.
855 * result of invoking the method on the specified managed resource.
1077 final Object result =
1086 if (result != null)
1087 cacheResult(opInfo, opDescr, result);
1089 return result;
1304 * Cache the result of an operation in the descriptor, if that is
1306 * don't remember operation parameters when caching the result, so
1310 Descriptor opDescr, Object result)
1334 opDescr.setField("value", result);
1309 cacheResult(ModelMBeanOperationInfo opInfo, Descriptor opDescr, Object result) argument
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A DsymbolTable.cpp328 Symbol* result = SymbolTable::lookup_only((char*)name, (int)strlen(name), hash); local
329 if (result != NULL) {
330 return result;
721 oop result = intern(string, chars, length, CHECK_NULL); local
722 return result;
733 oop result = intern(h_string, chars, length, CHECK_NULL); local
734 return result;
745 oop result = intern(string, chars, length, CHECK_NULL); local
746 return result;
H A Dverifier.hpp88 #define CHECK_VERIFY_(verifier, result) \
89 CHECK_(result)); if ((verifier)->has_error()) return (result); (0
369 Symbol* result() const { return _exception_type; } function in class:ClassVerifier
370 bool has_error() const { return result() != NULL; }
/openjdk7/hotspot/src/share/vm/code/
H A Ddependencies.hpp484 klassOop result = check_klass_dependency(NULL); local
485 if (result != NULL) return result;
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsAdaptiveSizePolicy.cpp169 bool result = padded_average_promoted_in_bytes() > (float) old_free_in_bytes; local
171 if (result) {
183 return result;
822 assert(reduced_size <= desired_promo_size, "Inconsistent result");
846 assert(reduced_size <= desired_eden_size, "Inconsistent result");
863 assert(reduced_change <= change, "Inconsistent result");
879 size_t result = eden_increment(cur_eden, YoungGenerationSizeIncrement); local
880 return align_size_up(result, _intra_generation_alignment);
884 size_t result = eden_increment(cur_eden); local
885 return align_size_down(result, _intra_generation_alignmen
890 size_t result = eden_increment(cur_eden, local
918 size_t result = promo_increment(cur_promo, TenuredGenerationSizeIncrement); local
923 size_t result = promo_increment(cur_promo, TenuredGenerationSizeIncrement); local
929 size_t result = promo_increment(cur_promo, local
[all...]
H A DpsScavenge.cpp780 bool result = promotion_estimate < old_gen->free_in_bytes(); local
783 gclog_or_tty->print(result ? " do scavenge: " : " skip scavenge: ");
797 if (result) {
805 return result;
/openjdk7/hotspot/src/share/vm/gc_interface/
H A DcollectedHeap.cpp188 size_t result = total + size; local
189 if (result < size) {
193 return result;
198 size_t result = round_to(total, size); local
199 if (result < size) {
203 return result;
/openjdk7/hotspot/src/share/vm/interpreter/
H A DinterpreterRuntime.cpp142 oop result = ldc.resolve_constant(CHECK); local
148 assert(result == cpce->f1_as_instance(), "expected result for assembly code");
633 assert(exception() != NULL, "vm result should be set");
634 thread->set_vm_result(NULL); // clear vm result before continuing (may cause memory leaks and assert failures)
1132 tty->print_cr(" --- associated result handler ---");
H A DoopMapCache.cpp112 return false; // We are not reporting any result. We call result_for_basicblock directly
182 bool result = _method == NULL; local
186 return result;
/openjdk7/hotspot/src/share/vm/memory/
H A DcardTableModRefBS.cpp199 MemRegion result = mr; local
202 result = result.minus(_committed[r]);
206 result = result.minus(_guard_region);
207 return result;
412 it does not it will only result in duplicate entry in the update

Completed in 94 milliseconds

<<11121314151617181920>>