Home
last modified time | relevance | path

Searched refs:xn (Results 1 – 2 of 2) sorted by relevance

/libcore/ojluni/src/main/java/sun/invoke/util/
DWrapper.java311 String xn = x.getName(); in hashPrim() local
312 if (xn.length() < 3) return 0; in hashPrim()
313 return (xn.charAt(0) + xn.charAt(2)) % 16; in hashPrim()
316 String xn = x.getName(); in hashWrap() local
318 if (xn.length() < offset+3) return 0; in hashWrap()
319 return (3*xn.charAt(offset+1) + xn.charAt(offset+2)) % 16; in hashWrap()
520 Number xn = numberValue(x); in wrap() local
522 case 'I': return Integer.valueOf(xn.intValue()); in wrap()
523 case 'J': return Long.valueOf(xn.longValue()); in wrap()
524 case 'F': return Float.valueOf(xn.floatValue()); in wrap()
[all …]
/libcore/ojluni/src/main/native/
DNet.c831 const char *xn; in handleSocketErrorWithDefault() local
837 xn = JNU_JAVANETPKG "ProtocolException"; in handleSocketErrorWithDefault()
841 xn = JNU_JAVANETPKG "ConnectException"; in handleSocketErrorWithDefault()
844 xn = JNU_JAVANETPKG "ConnectException"; in handleSocketErrorWithDefault()
847 xn = JNU_JAVANETPKG "NoRouteToHostException"; in handleSocketErrorWithDefault()
851 xn = JNU_JAVANETPKG "BindException"; in handleSocketErrorWithDefault()
854 xn = defaultException; in handleSocketErrorWithDefault()
858 JNU_ThrowByNameWithLastError(env, xn, "NioSocketError"); in handleSocketErrorWithDefault()