Searched refs:ndx (Results 1 - 17 of 17) sorted by relevance

/openjdk9/jdk/src/java.desktop/unix/classes/sun/awt/X11/
H A Dgenhash.awk39 ndx = toupper($1);
40 sub(/0X/, "", ndx);
42 $4, $1, $3, (unic[ndx]=="" ? "" : " " unic[ndx]));
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...]
/openjdk9/hotspot/test/serviceability/tmtools/jstat/utils/
H A DStringOfValues.java46 for (int ndx = 0; ndx < values.size(); ++ndx) {
47 if (values.get(ndx).equals(val)) {
48 return ndx;
54 String getValue(int ndx) { argument
55 return values.get(ndx);
/openjdk9/hotspot/test/serviceability/jdwp/
H A DJdwpAllModulesReply.java55 * @param ndx module index in the array of the reported ids
58 public long getModuleId(int ndx) { argument
59 return modulesId[ndx];
/openjdk9/hotspot/test/serviceability/tmtools/share/common/
H A DToolResults.java53 * @return the line indexed with ndx from the saved stdout. The indexes are
56 public String getStdoutLine(int ndx) { argument
57 return stdout.get(ndx);
/openjdk9/jdk/src/java.base/share/classes/sun/security/provider/certpath/
H A DVertex.java92 * @param ndx int index for vertex, or -1 if no following certificates.
94 void setIndex(int ndx) { argument
95 index = ndx;
/openjdk9/jdk/src/java.base/share/classes/sun/security/x509/
H A DDNSName.java214 int ndx = inName.lastIndexOf(thisName);
215 if (inName.charAt(ndx-1) == '.' )
H A DRFC822Name.java217 int ndx = inName.lastIndexOf(thisName);
218 if (inName.charAt(ndx-1) == '@') {
H A DGeneralSubtrees.java170 * @param ndx index of the GeneralSubtree from which to obtain the name
172 private GeneralNameInterface getGeneralNameInterface(int ndx) { argument
173 return getGeneralNameInterface(get(ndx));
/openjdk9/jdk/test/java/util/ResourceBundle/
H A DBug4168625Test.java524 int ndx = temp.indexOf("Thread[");
525 temp = temp.substring(ndx + "Thread[".length());
526 ndx = temp.indexOf(',');
527 temp = temp.substring(0, ndx);
/openjdk9/jdk/src/java.base/share/classes/java/time/chrono/
H A DHijrahChronology.java723 int ndx = Arrays.binarySearch(hijrahEpochMonthStartDays, epochDay);
724 if (ndx < 0) {
725 ndx = -ndx - 2;
727 return ndx;
957 throw new IllegalStateException("Did not fill epochMonths exactly: ndx = " + epochMonth
/openjdk9/jdk/test/jdk/internal/jimage/
H A DJImageReadTest.java245 int ndx = Arrays.binarySearch(names, s);
246 String which = (ndx >= 0) ? "java BasicImageReader" : "native JIMAGE_Resources";
/openjdk9/hotspot/src/share/vm/adlc/
H A Doutput_c.cpp220 int ndx = pipeline_reads.index(operand_stages); local
223 if (ndx < 0) {
225 ndx = pipeline_reads.index(operand_stages);
228 ndx+1, paramcount, operand_stages);
233 return (ndx);
295 int ndx = pipeline_res_stages.index(resource_stages); local
298 if (ndx < 0) {
300 ndx = pipeline_res_stages.index(resource_stages);
303 ndx+1, pipeline->_rescount, resource_stages);
310 return (ndx);
366 int ndx = pipeline_res_cycles.index(resource_cycles); local
516 int ndx = pipeline_res_mask.index(resource_mask); local
[all...]
/openjdk9/jdk/test/java/io/Serializable/serialFilter/
H A DSerialFilterTest.java624 int ndx = pattern.indexOf('=');
625 Assert.assertNotEquals(ndx, -1, "missing value in limit");
626 long value = Long.parseUnsignedLong(pattern.substring(ndx+1));
/openjdk9/jdk/test/java/lang/ref/
H A DCleanerTest.java194 int ndx = ((n & 1) == 0) ? i : 0;
195 runnables[n - 1] = runnables[ndx];
196 runnables[ndx] = t;
/openjdk9/nashorn/test/script/basic/
H A DJDK-8017084.js9623 ndx: 9592,

Completed in 450 milliseconds