Searched defs:ndx (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DVertex.java93 * @param ndx int index for vertex, or -1 if no following certificates.
95 void setIndex(int ndx) { argument
96 index = ndx;
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DGeneralSubtrees.java172 * @param ndx index of the GeneralSubtree from which to obtain the name
174 private GeneralNameInterface getGeneralNameInterface(int ndx) { argument
175 return getGeneralNameInterface(get(ndx));
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXKeysym.java97 static long xkeycode2keysym_noxkb(XKeyEvent ev, int ndx) { argument
100 return XlibWrapper.XKeycodeToKeysym(ev.get_display(), ev.get_keycode(), ndx);
105 static long xkeycode2keysym_xkb(XKeyEvent ev, int ndx) { argument
109 if ((ndx == 0) && ((mods & XConstants.ShiftMask) != 0)) {
110 // I don't know all possible meanings of 'ndx' in case of XKB
130 static long xkeycode2keysym(XKeyEvent ev, int ndx) { argument
134 return xkeycode2keysym_xkb(ev, ndx);
136 return xkeycode2keysym_noxkb(ev, ndx);
149 int ndx = XToolkit.isXsunKPBehavior() &&
153 // bugs like 6454041. So, we will try for keypadness a keysym with ndx
[all...]
H A Dkeysym2ucs.h135 tojava static long xkeycode2keysym_noxkb(XKeyEvent ev, int ndx) { argument
138 tojava return XlibWrapper.XKeycodeToKeysym(ev.get_display(), ev.get_keycode(), ndx);
143 tojava static long xkeycode2keysym_xkb(XKeyEvent ev, int ndx) { argument
147 tojava if ((ndx == 0) && ((mods & XConstants.ShiftMask) != 0)) {
148 tojava // I don't know all possible meanings of 'ndx' in case of XKB
168 tojava static long xkeycode2keysym(XKeyEvent ev, int ndx) { argument
172 tojava return xkeycode2keysym_xkb(ev, ndx);
174 tojava return xkeycode2keysym_noxkb(ev, ndx);
187 tojava int ndx = XToolkit.isXsunKPBehavior() && variable
191 tojava // bugs like 6454041. So, we will try for keypadness a keysym with ndx
233 tojava int ndx = 0; local
238 tojava ndx = 3; local
241 tojava ndx = 2; local
248 tojava ndx = 0; local
251 tojava ndx = 1; local
290 tojava int ndx = 0; local
296 tojava ndx = 0; local
316 tojava int ndx = 0; local
322 tojava ndx = 0; local
345 tojava int ndx = 0; local
361 tojava ndx = 0; local
365 tojava ndx = 0; local
369 tojava ndx = 1; local
375 tojava ndx = 1; local
378 tojava ndx = 1; local
[all...]
/openjdk7/hotspot/src/share/vm/adlc/
H A Doutput_c.cpp280 int ndx = pipeline_reads.index(operand_stages); local
283 if (ndx < 0) {
285 ndx = pipeline_reads.index(operand_stages);
288 ndx+1, paramcount, operand_stages);
293 return (ndx);
355 int ndx = pipeline_res_stages.index(resource_stages); local
358 if (ndx < 0) {
360 ndx = pipeline_res_stages.index(resource_stages);
363 ndx+1, pipeline->_rescount, resource_stages);
370 return (ndx);
426 int ndx = pipeline_res_cycles.index(resource_cycles); local
572 int ndx = pipeline_res_mask.index(resource_mask); local
[all...]

Completed in 42 milliseconds