Searched defs:result (Results 201 - 225 of 605) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/instrument/
H A DJavaExceptions.c316 jboolean result = JNI_FALSE; local
319 result = (exception == NULL) ||
323 return result;
332 jthrowable result = (*jnienv)->ExceptionOccurred(jnienv); local
333 if ( result != NULL ) {
336 return result;
355 jint result = (*jnienv)->Throw(jnienv, exception); local
356 jplis_assert_msg(result == JNI_OK, "throwThrowable failed to re-throw");
368 jboolean result = (*jnienv)->ExceptionCheck(jnienv); local
369 if ( result ) {
[all...]
/openjdk7/jdk/src/share/native/common/
H A Dcheck_format.c77 unicode result = 0x80; /* default bad result; */ local
81 result = ch;
94 result = (high_five << 6) + low_six;
106 result = (((high_four << 6) + mid_six) << 6) + low_six;
116 return result;
/openjdk7/jdk/src/share/native/java/lang/
H A DClass.c173 jclass result; local
184 result = JVM_FindPrimitiveClass(env, utfName);
188 return result;
/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DSeedGenerator.java136 * Fill result with bytes from the queue. Wait for it if it isn't ready.
138 static public void generateSeed(byte[] result) { argument
139 instance.getSeedBytes(result);
142 abstract void getSeedBytes(byte[] result); argument
352 void getSeedBytes(byte[] result) { argument
353 for (int i = 0; i < result.length; i++) {
354 result[i] = getSeedByte();
521 void getSeedBytes(byte[] result) { argument
522 int len = result.length;
526 int count = devRandom.read(result, rea
[all...]
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DUtility.java110 int result = 0;
155 result = dig;
166 result = (result << bitsPerDigit) | dig;
179 if (result < 0 || result >= 0x110000) {
187 UTF16.isLeadSurrogate((char) result)) {
197 result = UCharacterProperty.getRawSupplementary(
198 (char) result, (char) c);
202 return result;
282 recursiveAppendNumber(StringBuffer result, int n, int radix, int minDigits) argument
307 appendNumber(StringBuffer result, int n, int radix, int minDigits) argument
343 escapeUnprintable(StringBuffer result, int c) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DSummaryTab.java93 Result result = get();
94 if (result != null) {
95 info.setText(result.summary);
97 result.upTime > 0L &&
98 result.processCpuTime >= 0L) {
100 overviewPanel.updateCPUInfo(result);
116 Result result = new Result();
154 result.upTime = rmBean.getUptime();
155 append(Messages.UPTIME, formatTime(result.upTime));
157 result
351 updateCPUInfo(Result result) argument
[all...]
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/
H A DTest.java85 Result result = new Result(this);
87 Object ctx = initTest(env, result);
88 result.setModifiers(env.getModifiers());
90 runTestLoop(env, result, ctx);
92 result.setError(t);
97 if (result.getError() != null || result.getNumRuns() != 0) {
99 result.summarize();
101 env.record(result);
104 result
109 initTest(TestEnvironment env, Result result) argument
113 runTestLoop(TestEnvironment env, Result result, Object ctx) argument
[all...]
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/tests/iio/
H A DOutputStreamTests.java94 Context(TestEnvironment env, Result result) { argument
95 super(env, result);
136 public Object initTest(TestEnvironment env, Result result) { argument
137 Context ctx = new Context(env, result);
138 result.setUnits(1);
139 result.setUnitName("stream");
164 public Object initTest(TestEnvironment env, Result result) { argument
165 Context ctx = new Context(env, result);
166 result.setUnits(1);
167 result
202 initTest(TestEnvironment env, Result result) argument
242 initTest(TestEnvironment env, Result result) argument
280 initTest(TestEnvironment env, Result result) argument
318 initTest(TestEnvironment env, Result result) argument
356 initTest(TestEnvironment env, Result result) argument
394 initTest(TestEnvironment env, Result result) argument
432 initTest(TestEnvironment env, Result result) argument
470 initTest(TestEnvironment env, Result result) argument
[all...]
H A DOutputTests.java165 Context(TestEnvironment env, Result result) { argument
/openjdk7/jdk/test/java/util/concurrent/CyclicBarrier/
H A DBasic.java56 Throwable t = a.result();
94 private volatile Throwable result = null; field in class:Basic.Awaiter
95 protected void result(Throwable result) { this.result = result; } argument
96 public Throwable result() { return this.result; } method in class:Basic.Awaiter
104 catch (Throwable result) { result(resul
[all...]
/openjdk7/jdk/test/java/util/concurrent/Phaser/
H A DBasic.java73 Throwable t = a.result();
126 private volatile Throwable result; field in class:Basic.Arriver
128 protected void result(Throwable result) { this.result = result; } argument
129 public Throwable result() { return this.result; } method in class:Basic.Arriver
144 catch (Throwable result) { result(resul
[all...]
/openjdk7/jdk/test/java/util/logging/
H A DLoggingDeadlock2.java103 // This may or may not result in a first call to
169 public String result () throws Throwable { method in class:LoggingDeadlock2.StreamAccumulator
216 out = outAccumulator.result();
217 err = errAccumulator.result();
/openjdk7/jdk/src/share/classes/sun/misc/
H A DRegexpPool.java105 if (p.result != null && p.depth < BIG
117 if (p.result != null && p.depth < BIG) {
127 o = best.result;
128 best.result = null;
133 o = best.result;
134 best.result = null;
150 the return value is the result from calling
184 if (p.result != null && !replace)
188 p.result = ret;
202 if (p.result !
267 Object result; field in class:RegexpNode
[all...]
/openjdk7/jdk/src/share/classes/sun/net/www/http/
H A DKeepAliveCache.java52 static int result = -1; field in class:KeepAliveCache
54 if (result == -1) {
55 result = java.security.AccessController.doPrivileged(
59 if (result <= 0)
60 result = MAX_CONNECTIONS;
62 return result;
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DInvoker.java141 V result,
145 Invoker.invokeUnchecked(handler, attachment, result, exc);
156 V result,
173 invokeDirect(thisGroupAndInvokeCount, handler, attachment, result, exc);
176 invokeIndirectly(channel, handler, attachment, result, exc);
182 handler, attachment, result, exc);
196 final V result,
206 invokeUnchecked(handler, attachment, result, exc);
262 * Invoke handler with completed result. This method does not check the
277 * Invoke handler with completed result
138 invokeDirect(GroupAndInvokeCount myGroupAndInvokeCount, CompletionHandler<V,? super A> handler, A attachment, V result, Throwable exc) argument
153 invoke(AsynchronousChannel channel, CompletionHandler<V,? super A> handler, A attachment, V result, Throwable exc) argument
193 invokeIndirectly(AsynchronousChannel channel, final CompletionHandler<V,? super A> handler, final A attachment, final V result, final Throwable exc) argument
[all...]
H A DPendingFuture.java45 // true if result (or exception) is available
47 private volatile V result; field in class:PendingFuture
53 // optional timer task that is cancelled when result becomes available
131 * Sets the result, or a no-op if the result or exception is already set.
137 result = res;
147 * Sets the result, or a no-op if the result or exception is already set.
165 * Sets the result
187 return result;
[all...]
/openjdk7/jdk/src/share/classes/sun/nio/fs/
H A DAbstractPoller.java167 private Object result = null; field in class:AbstractPoller.Request
182 void release(Object result) { argument
185 this.result = result;
191 * Await completion of the request. The return value is the result of
203 return result;
209 * Enqueues request to poller thread and waits for result
224 // wait for result
225 Object result = req.awaitResult();
227 if (result instanceo
[all...]
/openjdk7/jdk/src/solaris/bin/
H A Dergo_i586.c83 jboolean result = JNI_FALSE; local
99 result = JNI_TRUE;
103 (result == JNI_TRUE ? "true" : "false"));
104 return result;
177 jboolean result = JNI_FALSE; local
193 result = JNI_TRUE;
197 (result == JNI_TRUE ? "true" : "false"));
198 return result;
218 HyperThreadingSupport result = hts_too_soon_to_tell; local
269 result
294 unsigned int result = 1U; local
312 unsigned long result = sys_processors; local
[all...]
H A Djexec.c260 int result = 0; local
286 result = errno;
289 return (result);
305 const char * result = BAD_FILE_MSG; local
313 result = BAD_MAGIC_MSG;
331 result = NULL;
339 if (result != NULL) {
346 return (result);
/openjdk7/langtools/test/tools/javac/treeannotests/
H A DTestProcessor.java197 error(file, anno, "Unexpected result: expected: \"" + expect + "\", found: \"" + found + "\"");
230 return result;
251 result = tree.name.toString();
256 result = tree.name.toString();
271 result = tree.toString();
276 result = print(tree.elemtype) + "[]";
281 result = print(tree.clazz) + "<" + print(tree.arguments) + ">";
287 result = tree.name.toString();
289 result = tree.name + " extends " + print(tree.bounds, "&");
295 result
300 private String result; field in class:TestProcessor.TypePrinter
[all...]
/openjdk7/jdk/test/sun/security/pkcs11/Signature/
H A DTestDSA.java86 private static void verify(Provider provider, String alg, PublicKey key, byte[] data, byte[] sig, boolean result) throws Exception { argument
92 if (r != result) {
97 if (r != result) {
/openjdk7/jdk/test/sun/security/pkcs11/ec/
H A DTestECDSA.java83 private static void verify(Provider provider, String alg, PublicKey key, byte[] data, byte[] sig, boolean result) throws Exception { argument
89 if (r != result) {
94 if (r != result) {
/openjdk7/jaxp/src/com/sun/org/apache/regexp/internal/
H A DRETest.java444 boolean result = r.match("aaab");
445 say("aaab = " + result);
447 if (!result) {
451 result = r.match("b");
452 say("b = " + result);
454 if (!result) {
458 result = r.match("c");
459 say("c = " + result);
461 if (result) {
465 result
775 checkResult(boolean result) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/validation/
H A DDOMResultAugmentor.java57 * <p>DOM result augmentor.</p>
81 public void setDOMResult(DOMResult result) { argument
83 if (result != null) {
84 final Node target = result.getNode();
H A DDOMResultBuilder.java67 * <p>DOM result builder.</p>
123 public void setDOMResult(DOMResult result) { argument
128 if (result != null) {
129 fTarget = result.getNode();
130 fNextSibling = result.getNextSibling();

Completed in 61 milliseconds

1234567891011>>