Searched refs:res (Results 51 - 75 of 785) sorted by relevance

1234567891011>>

/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/res/
H A DXResources_es.java23 package com.sun.org.apache.xml.internal.utils.res;
H A DXResources_fr.java23 package com.sun.org.apache.xml.internal.utils.res;
H A DXResources_it.java23 package com.sun.org.apache.xml.internal.utils.res;
H A DXResources_sv.java23 package com.sun.org.apache.xml.internal.utils.res;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/soql/
H A DJSJavaArrayKlass.java65 String[] res = new String[superFields.length + 1];
66 System.arraycopy(superFields, 0, res, 0, superFields.length);
67 res[superFields.length] = "dimension";
68 return res;
/openjdk7/langtools/test/tools/apt/lib/
H A DTestProcessorFactory.java44 ArrayList<String> res = new ArrayList<String>();
45 res.add("Test");
46 res.add("Ignore");
47 return res;
/openjdk7/jdk/test/javax/swing/JFileChooser/4150029/
H A Dbug4150029.java36 private boolean res; field in class:bug4150029
63 res = fileChooser.showOpenDialog(this) != JFileChooser.APPROVE_OPTION ||
66 res = false;
80 if (!res) {
/openjdk7/langtools/test/tools/javac/varargs/6806876/
H A DT6806876.java11 Comparable<?>[] res = m(i, l);
/openjdk7/jdk/src/solaris/native/sun/nio/ch/
H A DEPollArrayWrapper.c56 int res = epoll_wait(epfd, events, numfds, timeout); local
57 if (res < 0 && errno == EINTR) {
69 return res;
110 int res; local
115 RESTARTABLE(epoll_ctl(epfd, (int)opcode, (int)fd, &event), res); local
127 if (res < 0 && errno != EBADF && errno != ENOENT && errno != EPERM) {
138 int res; local
141 RESTARTABLE(epoll_wait(epfd, events, numfds, timeout), res); local
143 res = iepoll(epfd, events, numfds, timeout);
146 if (res <
[all...]
H A DKQueue.c79 int res; local
82 RESTARTABLE(kevent(kqfd, &changes[0], 1, NULL, 0, &timeout), res); local
83 return (res == -1) ? errno : 0;
91 int res; local
93 RESTARTABLE(kevent(kqfd, NULL, 0, events, nevents, NULL), res);
94 if (res < 0) {
97 return res;
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DLocalMember.java167 LocalMember res[] = new LocalMember[v.size()];
168 v.copyInto(res);
169 for (int i = 0; i < res.length; i++) {
170 res[i] = res[i].copyInline(ctx);
172 return res;
178 static public void doneWithArguments(Context ctx, LocalMember res[]) { argument
179 for (int i = 0; i < res.length; i++) {
180 if (res[i].originalOfCopy.accessPeer == res[
[all...]
/openjdk7/jdk/test/java/io/Writer/
H A DWriteFromString.java43 String res = lsw.toString();
44 if (!res.equals("esti")) {
46 System.err.println("Writer.write is incorrect:" + res);
52 res = sw.toString();
55 if (!res.equals("esti")) {
56 System.err.println("StringWriter.write is incorrect:" + res);
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/declaration/
H A DExecutableDeclarationImpl.java72 Collection<ParameterDeclaration> res =
75 res.add(env.declMaker.getParameterDeclaration(param));
76 return res;
83 ArrayList<ReferenceType> res = new ArrayList<ReferenceType>();
85 res.add((ReferenceType) env.typeMaker.getType(t));
87 return res;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DPerfDataEntry.java202 boolean[] res = new boolean[len];
206 res[i] = addr.getJBooleanAt(off + i * size);
208 return res;
217 char[] res = new char[len];
221 res[i] = addr.getJCharAt(off + i * size);
223 return res;
232 byte[] res = new byte[len];
236 res[i] = addr.getJByteAt(off + i * size);
238 return res;
247 short[] res
[all...]
/openjdk7/jdk/src/solaris/native/sun/java2d/loops/
H A Dvis_XorBlit.c98 mlib_d64 res, xorpixel64, alphamask64, dzero; local
132 res = vis_freg_pair(*pp0, *pp1);
133 res = vis_fxor(res, xorpixel64);
134 res = vis_fandnot(alphamask64, res);
135 res = vis_fxor(res, *(mlib_d64*)(dst_ptr + i));
136 vis_pst_32(res, dst_ptr + i, neg_mask);
157 mlib_d64 res, xorpixel6 local
216 mlib_d64 res, xorpixel64, alphamask64, dzero, dFF; local
278 mlib_d64 res, xorpixel64, alphamask64, rgbx_mask, dzero; local
[all...]
/openjdk7/jdk/test/sun/security/ssl/javax/net/ssl/NewAPIs/SSLEngine/
H A DSSLEngineService.java85 SSLEngineResult res = ssle.wrap(localAppData, localNetData);
88 switch (res.getStatus()) {
100 if (res.getHandshakeStatus() ==
109 if (res.bytesProduced() >= Short.MAX_VALUE) {
111 res.bytesProduced() + " bytes large packet ");
126 throw new IOException("Received invalid" + res.getStatus() +
152 SSLEngineResult res = ssle.unwrap(peerNetData, peerAppData);
156 switch (res.getStatus()) {
159 if (res.getHandshakeStatus() ==
167 if (received < 0 && res
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DNative.java106 byte[] res = new byte[length];
108 res[i] = getByte(data);
110 return res;
120 long res = XlibWrapper.unsafe.allocateMemory(bytes.length);
122 putByte(res+i, bytes[i]);
124 return res;
157 short[] res = new short[length];
159 res[i] = getUByte(data);
161 return res;
172 long res
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/url/
H A DGenericURLDirContext.java76 ResolveResult res = getRootURLContext(name, myEnv);
77 DirContext ctx = (DirContext)res.getResolvedObj();
79 return ctx.getAttributes(res.getRemainingName());
100 ResolveResult res = getRootURLContext(name, myEnv);
101 DirContext ctx = (DirContext)res.getResolvedObj();
103 return ctx.getAttributes(res.getRemainingName(), attrIds);
125 ResolveResult res = getRootURLContext(name, myEnv);
126 DirContext ctx = (DirContext)res.getResolvedObj();
128 ctx.modifyAttributes(res.getRemainingName(), mod_op, attrs);
150 ResolveResult res
[all...]
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DContext.cpp204 HRESULT res; local
206 if (FAILED(res = (*ppCtx)->InitContext())) {
210 return res;
328 HRESULT res = S_OK; local
371 res = D3DResourceManager::CreateInstance(this, &pResourceMgr);
373 res = pResourceMgr->Init(this);
375 RETURN_STATUS_IF_FAILED(res);
378 res = D3DVertexCacher::CreateInstance(this, &pVCacher);
380 res = pVCacher->Init(this);
382 RETURN_STATUS_IF_FAILED(res);
442 HRESULT res = E_FAIL; local
475 HRESULT res = E_FAIL; local
502 HRESULT res = S_OK; local
674 HRESULT res = S_OK; local
697 HRESULT res; local
728 HRESULT res = S_OK; local
824 HRESULT res; local
854 HRESULT res; local
903 HRESULT res = S_OK; local
927 HRESULT res = S_OK; local
986 HRESULT res = S_OK; local
1081 HRESULT res = S_OK; local
1125 HRESULT res; local
1162 HRESULT res = S_OK; local
1355 HRESULT res = UpdateState(STATE_CHANGE); local
1364 HRESULT res; local
1414 HRESULT res = S_OK; local
1497 HRESULT res = S_OK; local
1528 HRESULT res = S_OK; local
1544 HRESULT res = S_OK; local
1620 HRESULT res = pd3dDevice->BeginScene(); local
1684 HRESULT res; local
1749 HRESULT res; local
1772 HRESULT res; local
1796 HRESULT res; local
1814 HRESULT res = pd3dObject->CheckDeviceFormat(adapterOrdinal, local
1825 HRESULT res = pd3dObject->CheckDeviceFormat(adapterOrdinal, local
1836 HRESULT res = pd3dObject->CheckDeviceFormat(adapterOrdinal, local
[all...]
H A DD3DSurfaceData.cpp211 HRESULT res; local
222 if (FAILED(res = pMgr->GetD3DContext(d3dsdo->adapter, &pCtx))) {
223 D3DRQ_MarkLostIfNeeded(res, d3dsdo);
237 res = pCtx->GetResourceManager()->
241 if (SUCCEEDED(res)) {
246 D3DRQ_MarkLostIfNeeded(res, d3dsdo);
250 return SUCCEEDED(res);
262 HRESULT res; local
273 if (FAILED(res = pMgr->GetD3DContext(d3dsdo->adapter, &pCtx))) {
274 D3DRQ_MarkLostIfNeeded(res, d3dsd
309 HRESULT res; local
403 HRESULT res; local
465 HRESULT res; local
530 HRESULT res; local
566 HRESULT res; local
[all...]
H A DD3DGlyphCache.cpp37 HRESULT res; local
42 if (FAILED(res = (*ppGlyphCache)->Init(pCtx))) {
46 return res;
120 HRESULT res = pCtx->GetResourceManager()-> local
124 if (FAILED(res)) {
130 return res;
136 HRESULT res = S_OK; local
144 res = pCtx->UploadTileToTexture(pGlyphCacheRes,
168 return res;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/
H A DMemRegion.java87 MemRegion res = new MemRegion();
89 res.setStart(mr2.start());
91 res.setStart(start());
101 if (AddressOps.lt(resEnd, res.start())) {
102 res.setStart(null);
103 res.setWordSize(0);
105 res.setEnd(resEnd);
107 return res;
111 MemRegion res = new MemRegion();
113 res
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapClient.java154 LdapResult res = null;
191 res = ldapBind(name=null, (byte[])(pw=null), ctls, null,
193 if (res.status == LdapClient.LDAP_SUCCESS) {
205 res = new LdapResult();
206 res.status = LdapClient.LDAP_SUCCESS;
213 res = ldapBind(name, encodedPw, ctls, null, false);
214 if (res.status == LdapClient.LDAP_SUCCESS) {
235 res = LdapSasl.saslBind(this, conn, conn.host, name, pw,
237 if (res.status == LdapClient.LDAP_SUCCESS) {
255 (res
570 clearSearchReply(LdapResult res, Control[] ctls) argument
596 getSearchReply(int batchSize, LdapResult res, Hashtable binaryAttrs) argument
610 getSearchReply(LdapRequest req, int batchSize, LdapResult res, Hashtable binaryAttrs) argument
762 parseResult(BerDecoder replyBer, LdapResult res, boolean isLdapv3) argument
831 parseExtResponse(BerDecoder replyBer, LdapResult res) argument
882 processReply(LdapRequest req, LdapResult res, int responseType) argument
[all...]
/openjdk7/hotspot/src/os/solaris/vm/
H A DattachListener_solaris.cpp154 void complete(jint res, bufferedStream* st);
188 char* res = _pos; local
194 return res;
289 jint res = 0; local
293 res = (jint)SolarisAttachListener::ATTACH_ERROR_INTERNAL;
297 if (res == 0) {
299 res = (jint)SolarisAttachListener::ATTACH_ERROR_DENIED;
305 if (res == 0 && is_error_reported()) {
311 res = (jint)SolarisAttachListener::ATTACH_ERROR_RESOURCE;
315 if (res
373 int fd, res; local
395 RESTARTABLE(::close(fd), res); local
413 RESTARTABLE(::close(dd), res); local
451 int res; local
487 int res = os::Solaris::mutex_lock(mutex()); local
531 complete(jint res, bufferedStream* st) argument
[all...]
/openjdk7/jdk/src/windows/native/sun/nio/ch/
H A DWindowsAsynchronousFileChannelImpl.c41 BOOL res; local
48 res = ReadFile((HANDLE) jlong_to_ptr(handle),
54 if (res == 0) {
71 BOOL res; local
78 res = WriteFile((HANDLE)jlong_to_ptr(handle),
84 if (res == 0) {
99 BOOL res; local
112 res = LockFileEx(h, flags, 0, lowNumBytes, highNumBytes, lpOverlapped);
113 if (res == 0) {

Completed in 78 milliseconds

1234567891011>>