Searched refs:res (Results 251 - 275 of 785) sorted by relevance

<<11121314151617181920>>

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/
H A DServer.java95 int res = -1;
130 res = compile(out, fm, args);
131 // FIXME res = tool.run((InputStream)null, null, out, args.toArray(new String[args.size()]));
139 if (res >= 3) {
144 // res = compile(args.toArray(new String[args.size()]), out);
152 out.write(String.format("EXIT: %s%n", res).getBytes());
162 logger.info(String.format("EXIT: %s", res));
/openjdk7/langtools/test/tools/apt/mirror/declaration/
H A DClassDecl.java93 final Collection<String> res = new ArrayList<String>();
97 res.add("type");
100 res.add("class");
103 res.add("enum");
106 return res;
/openjdk7/jdk/src/share/demo/scripting/jconsole-plugin/src/com/sun/demo/scripting/jconsole/
H A DScriptJConsolePlugin.java119 String res;
123 res = (tmp == null)? null : tmp.toString();
125 res = ie.getMessage();
127 res = se.getMessage();
129 return res;
/openjdk7/jdk/test/javax/management/loading/LibraryLoader/
H A DLibraryLoaderTest.java120 Object res[] = ((Set) server.invoke(mlet,
127 for (int j = 0; j < res.length; j++) {
130 if (res[j] instanceof Throwable) {
131 ((Throwable) res[j]).printStackTrace(System.out);
143 ((ObjectInstance) res[j]).getObjectName();
/openjdk7/jdk/src/share/sample/scripting/scriptpad/src/resources/
H A Dgui.js102 var res = save? dialog.showSaveDialog(window):
104 if (res == JFileChooser.APPROVE_OPTION) {
138 var res = chooser.showDialog(window, title, color);
139 result = res? res : color;
/openjdk7/hotspot/src/os_cpu/bsd_zero/vm/
H A Dos_bsd_zero.cpp367 int res = pthread_getattr_np(pthread_self(), &attr); local
368 if (res != 0) {
369 if (res == ENOMEM) {
374 res));
378 res = pthread_attr_getstack(&attr, (void **) &stack_bottom, &stack_bytes);
379 if (res != 0) {
381 res));
391 res = pthread_attr_getguardsize(&attr, &guard_bytes);
392 if (res != 0) {
394 "pthread_attr_getguardsize failed with errno = " INT32_FORMAT, res));
[all...]
/openjdk7/hotspot/src/os_cpu/linux_zero/vm/
H A Dos_linux_zero.cpp313 int res = pthread_getattr_np(pthread_self(), &attr); local
314 if (res != 0) {
315 if (res == ENOMEM) {
319 fatal(err_msg("pthread_getattr_np failed with errno = %d", res));
325 res = pthread_attr_getstack(&attr, (void **) &stack_bottom, &stack_bytes);
326 if (res != 0) {
327 fatal(err_msg("pthread_attr_getstack failed with errno = %d", res));
337 res = pthread_attr_getguardsize(&attr, &guard_bytes);
338 if (res != 0) {
339 fatal(err_msg("pthread_attr_getguardsize failed with errno = %d", res));
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/declaration/
H A DAnnotationProxyMaker.java93 Map<String, Object> res = new LinkedHashMap<String, Object>();
100 res.put(meth.name.toString(), value);
106 return res;
114 Map<MethodSymbol, Attribute> res =
124 res.put(m, def);
130 res.put(p.fst, p.snd);
132 return res;
200 Object res = Array.newInstance(runtimeType, len);
207 Array.set(res, i, value);
213 value = res;
[all...]
H A DDeclarationImpl.java114 Collection<AnnotationMirror> res =
117 res.add(env.declMaker.getAnnotationMirror(a, this));
119 return res;
219 LinkedList<Symbol> res = new LinkedList<Symbol>();
222 res.addFirst(e.sym);
225 return cache ? (members = res) : res;
H A DAnnotationMirrorImpl.java108 Map<AnnotationTypeElementDeclaration, AnnotationValue> res =
112 res.put(getElement(val.fst),
115 return res;
H A DTypeParameterDeclarationImpl.java68 ArrayList<ReferenceType> res = new ArrayList<ReferenceType>();
70 res.add((ReferenceType) env.typeMaker.getType(t));
72 return res;
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/model/
H A DAnnotationProxyMaker.java96 Map<String, Object> res = new LinkedHashMap<String, Object>();
103 res.put(meth.name.toString(), value);
109 return res;
117 Map<MethodSymbol, Attribute> res =
127 res.put(m, def);
132 res.put(p.fst, p.snd);
133 return res;
200 Object res = Array.newInstance(returnClass, len);
207 Array.set(res, i, value);
213 value = res;
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXMenuWindow.java282 Rectangle res;
283 res = fitWindowRight(globalBounds, windowSize, screenSize);
284 if (res != null) {
285 return res;
287 res = fitWindowBelow(globalBounds, windowSize, screenSize);
288 if (res != null) {
289 return res;
291 res = fitWindowAbove(globalBounds, windowSize, screenSize);
292 if (res != null) {
293 return res;
[all...]
/openjdk7/jdk/src/solaris/native/sun/java2d/loops/
H A Dmlib_ImageZoom_NN.c157 mlib_s32 bit, res, k, y_step = -1; local
270 mlib_s32 res = dp[0] & ~mask0; local
274 res |=
279 *dp++ = res;
287 res = ((sl[buff[8 * i] >> (MLIB_SHIFT + 3)] << buff[8 * i]) & 0x8080);
288 res |= ((sl[buff[8 * i + 1] >> (MLIB_SHIFT + 3)] << buff[8 * i + 1]) & 0x4040);
289 res |= ((sl[buff[8 * i + 2] >> (MLIB_SHIFT + 3)] << buff[8 * i + 2]) & 0x2020);
290 res |= ((sl[buff[8 * i + 3] >> (MLIB_SHIFT + 3)] << buff[8 * i + 3]) & 0x1010);
291 res |= ((sl[buff[8 * i + 4] >> (MLIB_SHIFT + 3)] << buff[8 * i + 4]) & 0x0808);
292 res |
317 mlib_s32 res = dp[i] & ~mask1; local
428 mlib_s32 width8, res, y_step = -1; local
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/soql/
H A DJSJavaFrame.java70 Object[] res = new Object[fieldNames.length + superFields.length];
71 System.arraycopy(fieldNames, 0, res, 0, fieldNames.length);
72 System.arraycopy(superFields, 0, res, fieldNames.length, superFields.length);
73 return res;
109 Integer res = (Integer) fields.get(name);
110 return (res != null)? res.intValue() : FIELD_UNDEFINED;
H A DJSJavaHeap.java68 Object[] res = new Object[superIds.length + tmp.length];
69 System.arraycopy(tmp, 0, res, 0, tmp.length);
70 System.arraycopy(superIds, 0, res, tmp.length, superIds.length);
71 return res;
230 Integer res = (Integer) fields.get(name);
231 return (res != null)? res.intValue() : FIELD_UNDEFINED;
H A DJSJavaVM.java91 Object[] res = new Object[superIds.length + tmp.length];
92 System.arraycopy(tmp, 0, res, 0, tmp.length);
93 System.arraycopy(superIds, 0, res, tmp.length, superIds.length);
94 return res;
130 Integer res = (Integer) fields.get(name);
131 return (res != null)? res.intValue() : FIELD_UNDEFINED;
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DdirtyCardQueue.cpp49 bool res = true; local
51 res = apply_closure_to_buffer(cl, _buf, _index, _sz,
54 if (res && consume) _index = _sz;
56 return res;
227 bool res = apply_closure_to_completed_buffer_helper(cl, worker_i, nd); local
228 if (res) Atomic::inc(&_processed_buffers_rs_thread);
229 return res;
/openjdk7/jdk/src/share/classes/com/sun/script/javascript/
H A DExternalScriptable.java283 Object[] res = new Object[size];
284 System.arraycopy(keys, 0, res, 0, keys.length);
288 res[i++] = index;
290 return res;
422 String[] res = new String[list.size()];
423 list.toArray(res);
424 return res;
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DpromotionInfo.cpp214 SpoolBlock* res; local
215 if ((res = _spareSpool) != NULL) {
217 res->nextSpoolBlock = NULL;
219 res = (SpoolBlock*)(space()->allocateScratch(refillSize()));
220 if (res != NULL) {
221 res->init();
224 assert(res == NULL || res->nextSpoolBlock == NULL, "postcondition");
225 return res;
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Dec2_mont.c55 mp_err res = MP_OKAY; local
72 return res;
83 mp_err res = MP_OKAY; local
103 return res;
115 mp_err res = MP_OKAY; local
174 if (res == MP_OKAY) {
189 mp_err res = MP_OKAY; local
260 res = MP_BADARG;
274 return res;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/sei/
H A DSEIInvokerTube.java85 Packet res = wsdlOpMap.get(wsdlOp).invoke(req);
86 assert res != null;
87 return doReturnWith(res);
/openjdk7/jdk/src/windows/native/sun/nio/ch/
H A DWindowsAsynchronousServerSocketChannelImpl.c94 BOOL res; local
103 res = (*AcceptEx_func)(s1,
111 if (res == 0) {
/openjdk7/jdk/test/java/net/URLClassLoader/closetest/
H A DCloseTest.java108 int res = (Integer) method.invoke (test);
110 if (res != expectedValue) {
111 throw new RuntimeException ("wrong value from getValue() ["+res+
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DAnnotationDescImpl.java79 ElementValuePair res[] = new ElementValuePair[vals.length()];
82 res[i++] = new ElementValuePairImpl(env, val.fst, val.snd);
84 return res;

Completed in 87 milliseconds

<<11121314151617181920>>